I need help on finding the max & min values of a 3d array.
조회 수: 23(최근 30일)
표시 이전 댓글
I need help on finding the max & min values of a 3d array.
댓글 수: 0
채택된 답변
Turlough Hughes
2022년 2월 8일
M = max(A,[],'all')
finds the maximum over all elements of A. This syntax is valid for MATLAB® versions R2018b and later.
From the documentation for min
M = min(A,[],'all')
finds the minimum over all elements of A. This syntax is valid for MATLAB® versions R2018b and later.
댓글 수: 0
추가 답변(1개)
John D'Errico
2022년 2월 8일
편집: John D'Errico
2022년 2월 8일
min and max are not sufficient? For example:
A = randi(1000,[4 3 2])
[maxval,maxind] = max(A,[],'all')
So 954 is the largest value. It occurs where? At the 20th element of A. That is, if the elements of A were strung out in a single vector as they are stored in memory. What subscripts does that correspond to?
[irow,icol,ipage] = ind2sub(size(A),maxind)
4th row. 2nd column, 2nd page.
Min works the same way. Ok, it finds the min, not the max, so not exactly the same way. :)
댓글 수: 0
참고 항목
범주
Find more on Creating and Concatenating 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!