Add column vector to the end of another column vector
37 次查看(过去 30 天)
显示 更早的评论
Hello! I have two rather large data sets that I am trying to combine into one data set. For example vector A is a 50x1 vector and vector B is a 100x1 vector. How do I combine these two togeher to get a 150x1 vector? Thanks so much!
0 个评论
采纳的回答
Hans Scharler
2023-10-31
移动:Voss
2023-10-31
A = rand(50,1); % example 50x1 vector
B = rand(100,1); % example 100x1 vector
C = vertcat(A,B) % concatenate A and B vertically
4 个评论
Dyuman Joshi
2023-10-31
@Wilson Meireles, The methods are equivalent, just the syntax is different.
From the documentation of vertcat - "vertcat is equivalent to using square brackets to vertically concatenate or append arrays. For example, [A; B] is the same as vertcat(A,B) when A and B are compatible arrays."
更多回答(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!