Adding elements in column vectors
Mostrar comentarios más antiguos
Hi
I have 2 colimn vectors a = 1:500 and b= 1:6000 I would like to make a new column vector c with (a first) and (b second) so the new column vector would bw c = 1:6500.
Any help would be greatly appreciated
Thank you
David
1 comentario
Scott MacKenzie
el 10 de Jun. de 2021
Editada: Scott MacKenzie
el 10 de Jun. de 2021
You want to concatenate the vectors a and b. This is one of the most basic operations in MATLAB. All the details are here.
Respuesta aceptada
Más respuestas (1)
KSSV
el 10 de Jun. de 2021
0 votos
MAke a and b of equal dimension using linspace. and then add.
Read about linspace.,
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!