More efficient alternative to find()
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I am working on some simulation data and I would like to find the maximum element in each randomly generated vector which has no inherent pattern. Is there any more efficient alternative to the find() function in this case since Profiler says that find() is taking up a significant proportion of the compile time.
Many thanks.
0 件のコメント
採用された回答
John D'Errico
2023 年 8 月 4 日
編集済み: John D'Errico
2023 年 8 月 4 日
Why does max not do what you want? There are TWO returns from max.
X = randi(100,[1,10])
[xmax,maxloc] = max(X)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!