Access different elements of matrix

조회 수: 4 (최근 30일)
Gina Carts
Gina Carts 2019년 2월 19일
답변: Adam 2019년 2월 19일
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일
B = A( :, :, :, [2:5, 7] );

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by