Multiplies two vectors element-wise.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> ElementwiseConjugateMultiplyAsRightCore(
Matrix<T> left,
Matrix<T> result
)
Protected Overridable Function ElementwiseConjugateMultiplyAsRightCore (
left As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ ElementwiseConjugateMultiplyAsRightCore(
Matrix<T>^ left,
Matrix<T>^ result
)
abstract ElementwiseConjugateMultiplyAsRightCore :
left : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override ElementwiseConjugateMultiplyAsRightCore :
left : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The left operand of the multiplication. - result
- Type: Extreme.MathematicsMatrixT
The vector that is to hold the result. May be .
Return Value
Type:
MatrixTA vector whose elements are
the sum of the corresponding elements of
this vector and
left.
Reference