Borrar filtros
Borrar filtros

convert column vectors to 2D array

5 visualizaciones (últimos 30 días)
John
John el 2 de Oct. de 2012
Hello,
If you had two column vectors (2 columns of data) in the workspace, how could you convert this to a 2D array?
Thanks for your help

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 2 de Oct. de 2012
Editada: Azzi Abdelmalek el 2 de Oct. de 2012
a=[1;2;3]
b=[11;12;13]
v=[a'; b'] % vertical concatenation
w=[a b ] % horizontal concatenation

Wayne King
Wayne King el 2 de Oct. de 2012
Also, you can use cat()
x = randn(100,1);
y = randn(100,1);
z = cat(2,x,y);

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by