How to find index using max function to multi array???

1 回表示 (過去 30 日間)
Alan
Alan 2014 年 2 月 14 日
コメント済み: Alan 2014 年 2 月 14 日
Hi all, I want to find index of maximum value in my set of experiments. However, my data are composed by 4 dimensions such as A(i,j,k,l). How can I do to find the 4 indices for maximum value in A.
for exemple: B=max(A(:));
So, B=maximum value;
Now I want to find index of this value on my four dimensions.
thanks

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 14 日
編集済み: Azzi Abdelmalek 2014 年 2 月 14 日
A=rand(3,4,2,5);
[ii,jj]=max(A(:));
[a,b,c,d]=ind2sub(size(A),jj)
  1 件のコメント
Alan
Alan 2014 年 2 月 14 日
Perfect!!! thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by