transposing 3d matrix with permute function
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Antworten (2)
James Tursa
am 3 Jun. 2023
Bearbeitet: James Tursa
am 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,:)
x(2,:,1) % works
x(2,:,1,1,1,1,1,1,1,1) % also works!
size(x) % the 1 in the 3rd dimension is not stored and is not reported
size(x,3) % but if you specifically request it, it works
As for 3rd party applications, how does Igor Pro get the dimensions from MATLAB?
0 Kommentare
John D'Errico
am 3 Jun. 2023
Bearbeitet: John D'Errico
am 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)
A = repmat(A,[1 1 2]);
size(A)
Now you can pass this array into that tool. Do as you wish with the replicated data.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!