public static ComplexMatrix operator *(
ComplexMatrix left,
ReadOnlyDoubleMatrix right
)
Public Shared Operator * (
left As ComplexMatrix,
right As ReadOnlyDoubleMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ operator *(
ComplexMatrix^ left,
ReadOnlyDoubleMatrix^ right
)
static let inline (*)
left : ComplexMatrix *
right : ReadOnlyDoubleMatrix : ComplexMatrix
Let and
be the left
number of rows and columns, respectively, and consider its generic entry
Analogously, Let and
be the right
number of rows and columns, respectively, and let its generic entry given by
The method operates as follows.
ArgumentNullException | left is null. -or- right is null. |
ArgumentException | Both left and right are not scalar matrices, and the number of columns of left is not equal to the number of rows of right. |