필터 지우기
필터 지우기

Getting minimum value from an array

조회 수: 3 (최근 30일)
Meh
Meh 2012년 4월 3일
I want to get min of A= [0, 20, 15]. Actualy I want to find the minimum excluding the zero. So in the example my answer would be 15 not zero. Finaly I want to get the index of the minimum value. What I have done so far looks like:
for i=1:size(A)
if A(i)~=0
[index,c]=find(min(A));
end
end
but it is not giving me the results I want.

채택된 답변

Thomas
Thomas 2012년 4월 3일
try
c=min(A(A~=0))
idx=find(A==c)

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2012년 4월 3일
[val index] = min(A(~~A))
If you wanted the index involving zeros, find it after
index = find(A==val,1,'first')
  댓글 수: 2
Meh
Meh 2012년 4월 3일
thanx Sean it gives the correct Value but the index is not quit correct. It gives me 2, i think it should give 3.
Sean de Wolski
Sean de Wolski 2012년 4월 3일
look at the second part. Where we calculate the index after using find.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by