put two matrices in one matrix, one will take the odd column and the other one take the even column.

1 visualización (últimos 30 días)
A is a matrix 4x5
B is a matrix 4x5
C=[A B] 4x10 .. A and B will be combined in a matrix C where A take the odd column and B take the even column

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 16 de Dic. de 2021
C=reshape([A;B],size(A,1),[])

Categorías

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

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by