フィルターのクリア

Making a 3d array with an index that unifies all three layers

4 ビュー (過去 30 日間)
Rich Cavanaugh
Rich Cavanaugh 2018 年 3 月 24 日
コメント済み: Rich Cavanaugh 2018 年 3 月 24 日
I am trying to make a 3d array what has one unified index, the first layer of the matrix will just be a number index, the second layer will be a 1 or a 0 (predefined when the matrix is generated) the third layer will be a random character.
so basically I am trying to figure out how to get an index that lets me reference all three pieces of info in one place.
Thanks in advance for any advice or direction.

採用された回答

James Tursa
James Tursa 2018 年 3 月 24 日
編集済み: James Tursa 2018 年 3 月 24 日
x = your 3d array
k = your index
result = x(k,k,:); % the three pieces of info at index k
or, depending on how you want to use this downstream
result = squeeze(x(k,k,:)); % the three pieces of info at index k

その他の回答 (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