Suppose I have a 2D matrix (6,3) as follows
A
1 2 3
4 5 6
7 8 9
10 11 12
13 14 15
16 17 18
Now I want to reshape into one 3D matrix (3,3,2) like as follows:
A_3D(:, :, 1)
1 2 3
4 5 6
7 8 9
A_3D(:, :, 2)
10 11 12
13 14 15
16 17 18
How I can achieve that with an efficient way?
Thank you

 Respuesta aceptada

Ameer Hamza
Ameer Hamza el 2 de Oct. de 2020
Editada: Ameer Hamza el 2 de Oct. de 2020

0 votos

Combination of reshape and permute
permute(reshape(A, 3, size(A,1)/3, []), [1 3 2])

4 comentarios

Priyabrata Das
Priyabrata Das el 2 de Oct. de 2020
Editada: Priyabrata Das el 2 de Oct. de 2020
Thank you Mr. Ameer. This code is working fine for the given example. Suposse I have a 2D matrix of (3N,3) dimension and I want to covert into a 3D matrix of (3,3,N) dimension as per the above mentioned fashion. Will this code work too? If not, then what should be the proper way?
Thank you!
Ameer Hamza
Ameer Hamza el 2 de Oct. de 2020
See the updated answer.
Priyabrata Das
Priyabrata Das el 3 de Oct. de 2020
It is working fine. Now I have to understand the logic behind this line of code. Thank you very much.
Ameer Hamza
Ameer Hamza el 3 de Oct. de 2020
I am glad to be of help. You can run each part one by one and see the output. That will help in understanding.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Preguntada:

el 2 de Oct. de 2020

Comentada:

el 3 de Oct. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by