Multiplies the elements of a matrix by the corresponding
elements of another matrix conjugating
the left operand.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
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 .
Numerical Libraries
Supported in: 6.0
Reference