How to find index in multi-dimension matrix
1 回表示 (過去 30 日間)
古いコメントを表示
Say I have a matrix of m x n x l x w (4-D). How may I find the max/min and the corresponding index in 4-D?
I appreciate your help.
0 件のコメント
採用された回答
Bjorn Gustavsson
2021 年 11 月 26 日
You can do this in 2 simple steps:
[xMax,idx1D] = max(X(:));
[i1,i2,i3,i4] = ind2sub(size(X),idx1D);
HTH