Unfold 3D I x J x K to 2D I x JK
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Maxwell Barton
il 1 Ago 2019
Modificato: KALYAN ACHARJYA
il 1 Ago 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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/232219/image.png)
And I need it in the form:
![batch wise unfold matrix.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/232220/batch%20wise%20unfold%20matrix.png)
How would I go about doing this as I think reshape is inadequate?
Thanks
1 Commento
Risposta accettata
KALYAN ACHARJYA
il 1 Ago 2019
Modificato: KALYAN ACHARJYA
il 1 Ago 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). "
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox 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!