Select particular 3D volumes of a 4D matrix

2 views (last 30 days)
DM
DM on 7 Oct 2021
Answered: Kevin Holly on 7 Oct 2021
Hi,
I have a 4D matrix with dimensions [384, 308, 26, 31]. The 4D matrix is an image [x,y,z,t]. I would like to keep the x,y and z dimension like it is but I would like to keep the data on t-dimension between 1-11 and 14-29.
I wrote the following but it excludes only the last two instead of 4 datasets.
matrix_4D = matrix_4D(:,:,:,1:11:14:29);
Any help would be greatly appreciated.

Answers (1)

Kevin Holly
Kevin Holly on 7 Oct 2021
matrix_4D = matrix_4D(:,:,:,[1:11 14:29]);

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!