join two matrices together

Hello,
I have two matrices, MatrixA 177*4 and MatrixB 177*4 . I want to create a third Matrix which takes the first column of Matrix A and second column of MatrixB . So my final dimensions of MatrixC will be 177*8.
Thanks

 Respuesta aceptada

John Doe
John Doe el 29 de Mayo de 2013

1 voto

C = reshape([A; B],177,8)
Good luck!
- Rob

Más respuestas (0)

Categorías

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

Preguntada:

el 29 de Mayo de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by