Finding maximum value and corresponding variable
6 ビュー (過去 30 日間)
古いコメントを表示
Mohammad Sohel Rana
2019 年 6 月 24 日
コメント済み: Mohammad Sohel Rana
2019 年 6 月 24 日
Dear Matlab expert
P(m,d,L) is a matix and size of P(m,d,L) is [10 40 10]. Total element =10*40*10=4000;
Now I need to find maximum value(one maximum value) for P and corresponding m,d,L.
I am expecting your kind help.
Kind regards
Sohel
0 件のコメント
採用された回答
the cyclist
2019 年 6 月 24 日
P = rand(10,40,10); % Some pretend data
[P_max,linear_index_max] = max(P(:)); % Find max and index, for linearized matrix
[mc,dc,Lc] = ind2sub([10 40 10],linear_index_max); % Convert the linear index to subscripts
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!