Multiplies a vector by the linear operator and returns the result.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected override Vector<T> MultiplyAsLeftCore(
TransposeOperation operation,
Vector<T> right,
Vector<T> result
)
Protected Overrides Function MultiplyAsLeftCore (
operation As TransposeOperation,
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ MultiplyAsLeftCore(
TransposeOperation operation,
Vector<T>^ right,
Vector<T>^ result
) override
abstract MultiplyAsLeftCore :
operation : TransposeOperation *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override MultiplyAsLeftCore :
operation : TransposeOperation *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- operation
- Type: Extreme.MathematicsTransposeOperation
- right
- Type: Extreme.MathematicsVectorT
The right operand of the multiplication. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector that is the product of
this matrix and
right.
Reference