Merge two vectors into matrix
331 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a time vector of 1x1024 double and an amplitude vector of 1024x1 double. How do I combine these vectors into a single matrix?
0 comentarios
Respuestas (3)
Idan Cohen
el 22 de Abr. de 2020
Hi,
I have a similar question. I have three vectors - X, Y and Z.
How can I merge these vectors into on matris so I can plot 3-D surf graph?
Thanks.
0 comentarios
Von Duesenberg
el 21 de En. de 2017
Something like this?
vector1 = rand(1024,1);
vector2 = rand(1, 1024);
newVector = [vector1 vector2'];
3 comentarios
Mohammed Ayoub
el 7 de Feb. de 2018
Use "horzcat" command after transposing one of the vector. The result will be horizontally concatenates arrays. Thanks
Ver también
Categorías
Más información sobre Discrete Data Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!