How to find index in multi-dimension matrix

2 ビュー (過去 30 日間)
JZ
JZ 2021 年 11 月 26 日
回答済み: Bjorn Gustavsson 2021 年 11 月 26 日
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.

採用された回答

Bjorn Gustavsson
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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by