find array/matrix max value and position

조회 수: 3 (최근 30일)
Francisco
Francisco 2012년 1월 25일
Hello
I have a matrix 1 x 130049 double and i want to find the max value and his position
What i have written so far:
m=max(p);
l=length(p); % length= 130049
for i=1:l
if p(s)== m
position=s;
end
end
The variable 'position' give me numbers that don't have anithing to do with what want. If someonecan help me...plz Thanks

답변 (1개)

Oleg Komarov
Oleg Komarov 2012년 1월 25일
Look at the second output argument of the max function.
[m,idx] = max(p)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by