Array multiply和Matrix multiply有什么区别?
发布网友
发布时间:2024-08-16 15:59
我来回答
共1个回答
热心网友
时间:2024-08-28 19:35
.* Array multiply.
X.*Y denotes element-by-element multiplication. X and Y
must have the same dimensions unless one is a scalar.
A scalar can be multiplied into anything.
C = TIMES(A,B) is called for the syntax 'A .* B' when A or B is an
object.