Filter löschen
Filter löschen

Transforming a multidimensional array to a two dimensional array?

17 Ansichten (letzte 30 Tage)
Hi
I have a matrix Z which is multidimensional, that is Z can be thought of as an $N \times N$ matrix and it has $n$ copies of the matrix in the third dimension, so the dimension of the matrix Z is N x N x n. I just want to stack the matrices in the thrird dimension that is the stacks of 2D matrices from 1 to n side by side. so finally the new matrix will have the dimension N x (N*n).
I am trying to implement it in MATLAB using commands. may be using some commands does this efficiently.
Thanks for your help!.

Akzeptierte Antwort

madhan ravi
madhan ravi am 22 Mär. 2019
reshape( yourmatrix, [ N N*n ] )

Weitere Antworten (2)

Matt J
Matt J am 22 Mär. 2019

Mark Sherstan
Mark Sherstan am 22 Mär. 2019
Check out reshape()

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by