Multiplies a vector by the linear operator and returns the result.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected override Vector<T> MultiplyAsLeftCore(
TransposeOperation transpose,
Vector<T> right,
Vector<T> result
)
Protected Overrides Function MultiplyAsLeftCore (
transpose As TransposeOperation,
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ MultiplyAsLeftCore(
TransposeOperation transpose,
Vector<T>^ right,
Vector<T>^ result
) override
abstract MultiplyAsLeftCore :
transpose : TransposeOperation *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override MultiplyAsLeftCore :
transpose : TransposeOperation *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- transpose
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on the operator before multiplying. - 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