minmax does not work in matlab 2018b
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
Does anybody know why MATLAB 2018 b version gives this error while using the minmax function?
'minmax' requires Deep Learning Toolbox.
Is there any change?
Thanks
2 Kommentare
Rik
am 11 Dez. 2018
Aparently this function is included in the deep learning toolbox, but you either don't have a valid licence for it, and/or you don't have the toolbox installed.
Akzeptierte Antwort
Stephen23
am 11 Dez. 2018
is simply equivalent to:
[min(M,[],2),max(M,[],2)]
for a matrix M.
0 Kommentare
Weitere Antworten (2)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!