How to reshape my matrix A to B

1 visualización (últimos 30 días)
PRED LIU
PRED LIU el 8 de Jun. de 2020
Comentada: madhan ravi el 8 de Jun. de 2020
How to reshape my matrix A to B ??
A(:,:,1)=[ 8, 1, 6 ;...
3, 5, 7 ;...
4, 9, 2 ]
A(:,:,2)=[16, 2, 12 ;...
6, 10, 14 ;...
8, 18, 4 ]
A(:,:,3)=[24, 3, 18 ;...
9, 15, 21 ;...
12, 27, 6 ]
B= 8 1 6
3 5 7
4 9 2
16 2 12
6 10 14
8 18 4
24 3 18
9 15 21
12 27 6

Respuesta aceptada

KSSV
KSSV el 8 de Jun. de 2020
B = reshape(permute(A,[2 1 3]),3,[])'
  6 comentarios
KSSV
KSSV el 8 de Jun. de 2020
2020a
madhan ravi
madhan ravi el 8 de Jun. de 2020
? OP is using 2019b

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by