Change matrix dimensions from 4D to 2 D : matrix manipulation
Show older comments
Dear Matlab community, I am still trying to manipulate some of my output here by converting 4D matrices to 2D. I am having a hard time using "squeeze" and "reshape". I have this matrix (5by5 by 14680 by 30)[ this is basically 30 sets of 14680 of 5by5 matrices), and I need to extract only all the 1st columns from each 5by5 matrices, to have 14680 of (5*1) arrays/matrices, then transpose the (5*1)' so my final matrix has the following dimensions : Final (14680by5) two dimensions only with each row(:,1:5) has the elements from the extracted (5*1) arrays from the step before. I would really appreciate any help! thank you matlab community! Amine
3 Comments
Kenny Kim
on 12 Dec 2016
"I need to extract only all the 1st columns from each 5by5 matrices, to have 14680 of (5*1) arrays/matrices"
If you extract only the first column from each 5x5, then you get 5x1x14680x30. You need to tell us what you want to do with that last dimension.
Matt J
on 12 Dec 2016
It would also be good to mention in what way this post is not redundant with respect to
Amine Ben Ayara
on 13 Dec 2016
Accepted Answer
More Answers (1)
Kenny Kim
on 13 Dec 2016
This should make the matrix you were looking for:
datatemp = permute(squeeze(data(:,1,:,:)),[2 1 3]);
datatemp = reshape(datatemp,[size(datatemp,1),size(datatemp,2)*size(datatemp,3)]);
where data is the variable name for your 4D matrix.
Categories
Find more on Creating and Concatenating Matrices 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!