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!