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