Multiplies two vectors element-wise.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> ElementwiseConjugateMultiplyAsLeftCore(
Matrix<T> right,
Matrix<T> result
)
Protected Overridable Function ElementwiseConjugateMultiplyAsLeftCore (
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ ElementwiseConjugateMultiplyAsLeftCore(
Matrix<T>^ right,
Matrix<T>^ result
)
abstract ElementwiseConjugateMultiplyAsLeftCore :
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override ElementwiseConjugateMultiplyAsLeftCore :
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- right
- Type: Extreme.MathematicsMatrixT
The right 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
right.
Reference