Multiplies the elements of a matrix by the corresponding
elements of another matrix conjugating
the left operand.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> ElementwiseConjugateMultiply<T>(
Matrix<T> left,
Matrix<T> right
)
Public Shared Function ElementwiseConjugateMultiply(Of T) (
left As Matrix(Of T),
right As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ElementwiseConjugateMultiply(
Matrix<T>^ left,
Matrix<T>^ right
)
static member ElementwiseConjugateMultiply :
left : Matrix<'T> *
right : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The first matrix. - right
- Type: Extreme.MathematicsMatrixT
The second matrix.
Type Parameters
- T
Return Value
Type:
MatrixTA new matrix whose elements are equal to the
products of the elements of
left and
right .
Reference