Find the largest element and its location in a 3 dimensional array
2 views (last 30 days)
Show older comments
Israa Ahmed
on 8 Aug 2021
Commented: Walter Roberson
on 8 Aug 2021
How to find the largest element and its location in case of a 3 dimensional array in Matlab?
0 Comments
Accepted Answer
Walter Roberson
on 8 Aug 2021
Edited: Walter Roberson
on 8 Aug 2021
[largest_value, idx] = max(YourArray, [], 'all', 'linear');
[row, col, page] = ind2sub(size(YourArray), idx);
In older releases you would probably use
[largest_value, idx] = max(YourArray(:));
[row, col, page] = ind2sub(size(YourArray), idx);
2 Comments
More Answers (0)
See Also
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!