transposing 3d matrix with permute function

8 views (last 30 days)
navan
navan on 3 Jun 2023
Edited: John D'Errico on 3 Jun 2023
I have 3d matrix 1*508*265. I want to use permute function so that I need to get 265*508*1. However the 1 is not shown in matlab (which makes it a 2d wave). So if I want to open this in different application as Igor pro, it assumes the entire wave as 2d as matlab ignores 1 at the end. Can someone kindly help here?

Answers (2)

James Tursa
James Tursa on 3 Jun 2023
Edited: James Tursa on 3 Jun 2023
MATLAB does not store trailing singleton (1) dimensions beyond the 2nd dimension. Once you permute that 1 into the 3rd dimension, it is not stored. But you can still treat the variable in MATLAB as if that dimension is there. E.g.,
x = reshape(1:6,2,3)
x = 2×3
1 3 5 2 4 6
x(2,:)
ans = 1×3
2 4 6
x(2,:,1) % works
ans = 1×3
2 4 6
x(2,:,1,1,1,1,1,1,1,1) % also works!
ans = 1×3
2 4 6
size(x) % the 1 in the 3rd dimension is not stored and is not reported
ans = 1×2
2 3
size(x,3) % but if you specifically request it, it works
ans = 1
As for 3rd party applications, how does Igor Pro get the dimensions from MATLAB?

John D'Errico
John D'Errico on 3 Jun 2023
Edited: John D'Errico on 3 Jun 2023
You CANNOT tell MATLAB that a matrix is explicitly 265x508x1, and have it recognize that third singleton dimension. Yes, if you use size, and so interogate that third dimension, it will tell you it is of size 1.
But if you then pass it to a third party tool, MATLAB will still pass it as 2d.
However, can you make the array 265x508x2? That is, just use repmat to replicate the first plane into a second identical plane.
A = rand(265,508);
size(A)
ans = 1×2
265 508
A = repmat(A,[1 1 2]);
size(A)
ans = 1×3
265 508 2
Now you can pass this array into that tool. Do as you wish with the replicated data.

Categories

Find more on Operating on Diagonal 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!