Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 2 个值的矩阵,比如说 matrix=[1,2]; 现在我想将 3,4 插入到矩阵中,低于 1,2。最后,我想要一个具有 2 个列和 n 个值的矩阵。你能帮我吗?谢谢!
vertcat将连接具有相同列数的数组/矩阵。
或者,您可以使用类似的方法手动完成
a = [1, 2]; b = [3, 4]; a = [a; b];
这里,分号表示一个新行。