Indexing in a vector
5 ビュー (過去 30 日間)
古いコメントを表示
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
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?
採用された回答
the cyclist
2020 年 8 月 16 日
Please see my comment.
If your input is a vector (i.e. one-dimensional), then
[maxValue indexToMaxValue] = max(inputVector);
0 件のコメント
その他の回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!