Adding elements in column vectors
87 次查看(过去 30 天)
显示 更早的评论
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 个评论
Scott MacKenzie
2021-6-10
编辑:Scott MacKenzie
2021-6-10
You want to concatenate the vectors a and b. This is one of the most basic operations in MATLAB. All the details are here.
采纳的回答
Max Heiken
2021-6-10
Hello,
you can concatenate vectors and matrices vertically with a semicolon like this
c = [a; b];
or concatenate them horizontally with a comma like this
c = [a, b];
1 个评论
Scott MacKenzie
2021-6-10
Yes indeed, but horizontal concatenation won't work in this case because a is 1x500 and b is1x6000 and both are column vectors.
更多回答(1 个)
KSSV
2021-6-10
MAke a and b of equal dimension using linspace. and then add.
Read about linspace.,
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!