Filter löschen
Filter löschen

Unfold 3D I x J x K to 2D I x JK

5 Ansichten (letzte 30 Tage)
Maxwell Barton
Maxwell Barton am 1 Aug. 2019
Bearbeitet: KALYAN ACHARJYA am 1 Aug. 2019
Hi,
I am trying to unfold a matrix in the form I x J x K to I x JK corresponding to I batches, J variables and K time periods (within the batch).
I currently have got this matrix:
And I need it in the form:
batch wise unfold matrix.PNG
How would I go about doing this as I think reshape is inadequate?
Thanks
  1 Kommentar
madhan ravi
madhan ravi am 1 Aug. 2019
Illustration with a simple example would be better.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 1 Aug. 2019
Bearbeitet: KALYAN ACHARJYA am 1 Aug. 2019
"I am trying to unfold a matrix in the form I x J x K to I x JK"
May be: Are you looking for this one?
[R C D]=size(M);
X=reshape(M,R,C*D)
I ignored this part "corresponding to I batches, J variables and K time periods (within the batch). "

Weitere Antworten (1)

Bruno Luong
Bruno Luong am 1 Aug. 2019
X=M(:,:)

Kategorien

Mehr zu Matrices and Arrays 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!

Translated by