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.
当我在 MATLAB 中运行以下命令时:
x=zeros(size(30,1),1)
我得到了一个1x1 double值为 的矩阵0。
1x1
double
0
那个怎么样?
谢谢。
size(30,1)size(A,1)返回“矩阵”的行数(由 表示) 30。由于您的矩阵只有一个元素,因此行数是1零x矩阵1x1。
size(30,1)
size(A,1)
30
1
x