I have an array of 6,76,000 as txt file, how can I convert that into 52x13x1000.

2 views (last 30 days)
I have an array of 6,76,000 as txt file, how can I convert that into 52x13x1000.

Accepted Answer

Bjorn Gustavsson
Bjorn Gustavsson on 18 Jan 2022
You could try reshape, see the help and documentation of that function. If you dont get the elements in the right order with something like this:
V3D = reshape(V1D,[1000,13,52]);
Then you might have to put the new sizes in a different order and then use the premute function to re-arrange:
V3D = reshape(V1D,[13,52,1000]);
V3D = permute(V3D,[3,1,2]); % If I got the ordering right here...
Obviously you migh have your elements in an even more peculiar order, then this becomes a far more labourious task...
HTH

More Answers (1)

KSSV
KSSV on 18 Jan 2022
iwant = reshape(a,1000,13,52);

Categories

Find more on Matrices and Arrays 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!