Multiplies a vector by the linear operator and returns the result.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
protected abstract Vector<T> MultiplyAsLeftCore(
TransposeOperation transpose,
Vector<T> right,
Vector<T> result
)
Protected MustOverride 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
) abstract
abstract 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.Mathematics.GenericVectorT
The right operand of the multiplication. - result
- Type: Extreme.Mathematics.GenericVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector that is the product of
this matrix and
right.
Numerical Libraries
Supported in: 5.x
Reference