How can I find the maximum value in a matrix?
조회 수: 71 (최근 30일)
이전 댓글 표시
How can I find the maximum value in a matrix and find its column and row number of this value?
댓글 수: 0
채택된 답변
Andrei Bobrov
2013년 6월 14일
A = randi(100,7,6); % your matrix
v = max(A(:)); % value
[ii,jj] = find(A == v); % row and column number
댓글 수: 0
추가 답변 (1개)
Image Analyst
2013년 6월 14일
maxValue = max(yourMatrix);
[row column] = find(yourMatrix==maxValue);
Or you can take the second returned argument from max() and use ind2sub().
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!