Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Find maximum in matrix and show

조회 수: 4 (최근 30일)
martin martin
martin martin 2019년 6월 16일
마감: MATLAB Answer Bot 2021년 8월 20일
Hello guys,
I would have a question - If I have a matrix of numbers for example 50x50 (rows, columns) and matrix changes values for example 50 times - how can I plot position of these 50 maximums?
Thanks for some ideas

답변 (1개)

Star Strider
Star Strider 2019년 6월 16일
If I understand correctly what you want to do, use the max (link) function.
To get the maximum of every column of your matrix ‘M’:
colmax = max(M);
To get the maximum of every row:
rowmax = max(M,[],2);

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by