Multiplies a matrix element-wise by another matrix conjugating
the left operand.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> ElementwiseConjugateMultiplyInto<T>(
Matrix<T> left,
Matrix<T> right,
Matrix<T> result
)
Public Shared Function ElementwiseConjugateMultiplyInto(Of T) (
left As Matrix(Of T),
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ElementwiseConjugateMultiplyInto(
Matrix<T>^ left,
Matrix<T>^ right,
Matrix<T>^ result
)
static member ElementwiseConjugateMultiplyInto :
left : Matrix<'T> *
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A matrix. - right
- Type: Extreme.MathematicsMatrixT
A matrix. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are equal to the
products of the elements of
left and
right .
Reference