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

1 visualizzazione (ultimi 30 giorni)
I have an array of 6,76,000 as txt file, how can I convert that into 52x13x1000.

Risposta accettata

Bjorn Gustavsson
Bjorn Gustavsson il 18 Gen 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

Più risposte (1)

KSSV
KSSV il 18 Gen 2022
iwant = reshape(a,1000,13,52);

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by