필터 지우기
필터 지우기

how to pinpoint the maximum scalar in a matrix?

조회 수: 2 (최근 30일)
Sameer
Sameer 2014년 6월 1일
편집: Matt J 2014년 6월 1일
how do we extract the maximum number from a matrix, and tell the screen which column or row this number is in?

답변 (2개)

Geoff Hayes
Geoff Hayes 2014년 6월 1일
One way is to use the max command (type help max) for details. Suppose you have the following matrix:
A = magic(5)
A =
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
It is clear that the maximum is in the fifth row, third column. To find that maximum and which column it is in type:
[mxval,col] = max(max(A));
See the documentation on max as to why we do the max(max(A)). So if there is just the single maximum value (no duplicates) then you can do the following:
row = find(A(:,col)==mxval);
Then to display to the console/command window:
fprintf('max value=%f, row=%d, col=%d\n',mxval,row,col);
Note that you should write some code to handle the case where there are duplicates of the maximum value in the matrix (and so mxval and col are 1xN vectors, with N>1).

Matt J
Matt J 2014년 6월 1일
편집: Matt J 2014년 6월 1일
maxval=max(A(:));
[row,col]=find(A==maxval),

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by