我有两个矩阵X
和Y
,我想执行逐元素减法。这是我的代码:
whos('X', 'Y')
Z = X - Y;
以下输出显示X
和Y
的大小相同,但后面会显示一条错误消息,表明它们实际上大小不同:
Name Size Bytes Class Attributes
X 1995x10 159600 double
Y 1995x10 159600 double
In an assignment A(I) = B, the number of elements in B and I must be
the same.
这可能是什么原因?