matlab 向已知矩阵中添加元素时间:2025-04-18 19:07:01如果要向已知的矩阵中添加列,如下 a=[] for i=[1:0.0001:10] a=[a,i]; end 向已知的矩阵中添加行,如下 a=[] for i=[1:0.0001:10] a=[a;i]; end