public static ComplexMatrix ElementWiseMultiply(
ReadOnlyDoubleMatrix left,
ComplexMatrix right
)
Public Shared Function ElementWiseMultiply (
left As ReadOnlyDoubleMatrix,
right As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ ElementWiseMultiply(
ReadOnlyDoubleMatrix^ left,
ComplexMatrix^ right
)
static member ElementWiseMultiply :
left : ReadOnlyDoubleMatrix *
right : ComplexMatrix -> 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 returns a matrix
whose generic entry is
provided that the dimensions of left agree
with those of right; otherwise, an exception
is thrown.
ArgumentNullException | left is null. -or- right is null. |
ArgumentException | left and right have not the same number of rows and columns. |