minmax does not work in matlab 2018b
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Rik
2018 年 12 月 11 日
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.
採用された回答
Stephen23
2018 年 12 月 11 日
is simply equivalent to:
[min(M,[],2),max(M,[],2)]
for a matrix M.
0 件のコメント
その他の回答 (2 件)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!