Access different elements of matrix

I have a 4D matrix with dimensions A = [100,100,25, 9].
I want to create another matrix including only the 2,3,4,5 and 7th elements of the 4th dimension.
If I want the 2nd till the 5th I know B = A[:,:,:,2:5]. If I want to add the 7th as well how can I add it?

 採用された回答

Adam
Adam 2019 年 2 月 19 日

0 投票

B = A( :, :, :, [2:5, 7] );

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

質問済み:

2019 年 2 月 19 日

回答済み:

2019 年 2 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by