Matrix.Elementwise Conjugate Multiply<T> Method
Multiplies the elements of a matrix by the corresponding
elements of another matrix conjugating
the left operand.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A new matrix whose elements are equal to the products of the elements of left and right .
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Matrix<T> ElementwiseConjugateMultiply<T>(
Matrix<T> left,
Matrix<T> right
)
Parameters
Type Parameters
- T
Return Value
Matrix<T>A new matrix whose elements are equal to the products of the elements of left and right .
Exceptions
Argument | left is null -or- right is null |
Dimension | The length of left does not equal the length of right. |