how to create a single column matrix from two matrices in MATLAB

Hi all,
I have tow matrcies A=[1,2,3,4] and B= [7,4,6]. I want to combine it in a single column matrix.
Can anyone help me in this regrad?
thanks in advance

1 comentario

Calequela Manuel
Calequela Manuel el 21 de Jun. de 2022
Editada: Calequela Manuel el 21 de Jun. de 2022
A=[1,2,3,4];
B= [7,4,6];
Resolution:
T = ([A B])'
T = ([1 2 3 4 7 4 6])'
T = 1
2
3
4
7
4
6

Iniciar sesión para comentar.

Respuestas (1)

A=[1,2,3,4];
B= [7,4,6];
C = cat(2,A,B) % or cat(2,B,A)
C = C'

4 comentarios

Hope this helps
C = [A, B].':
or
C = [A(:) ; B(:)];
@Srinidhi Thank you very much. The provided code has worked.
@Walter Roberson Thanks for your comment

Iniciar sesión para comentar.

Categorías

Productos

Versión

R2016a

Etiquetas

Preguntada:

el 27 de Mzo. de 2021

Editada:

el 21 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by