필터 지우기
필터 지우기

Indexing in a vector

조회 수: 4 (최근 30일)
MOHAMED ABDULAZIM
MOHAMED ABDULAZIM 2020년 8월 16일
댓글: MOHAMED ABDULAZIM 2020년 8월 16일
I am trying to extract maximum value from a vector by max() function,however I need to know the index of this value in the vector in order to use this indexing in performing another operation by writing a script file.How to know the index of the element in the array?
  댓글 수: 2
the cyclist
the cyclist 2020년 8월 16일
You refer to your input as both a "vector" (one-dimensional) and an array (could be any dimension, but typically two).
Which is it?
MOHAMED ABDULAZIM
MOHAMED ABDULAZIM 2020년 8월 16일
a vector (one-dimensional)

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

채택된 답변

the cyclist
the cyclist 2020년 8월 16일
Please see my comment.
If your input is a vector (i.e. one-dimensional), then
[maxValue indexToMaxValue] = max(inputVector);

추가 답변 (1개)

Sara Boznik
Sara Boznik 2020년 8월 16일
r=triu(r);
r;
w=min(r(r>0));
b=max(r(:));
[m,n]=find(r==w);
fprintf(id,'Minimum %.4f.\n',w);
for i=1:length(m)
fprintf(id,'Points %d in %d.\n',m(i),n(i));
end
[m,n]=find(r==b)
fprintf(id,'Maksimum %.4f.\n',b)
fprintf(id,'Points %d in %d.\n',m,n);
Here is part of my code where we searching the min and max.

카테고리

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

제품


릴리스

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by