Multiplies the matrix with a vector, adds the scaled result to another scaled
vector, 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 override Vector<T> MultiplyAndAddAsLeftFactorCore(
T leftFactor,
Vector<T> left,
T productFactor,
TransposeOperation transpose,
Vector<T> rightFactor,
Vector<T> result
)
Protected Overrides Function MultiplyAndAddAsLeftFactorCore (
leftFactor As T,
left As Vector(Of T),
productFactor As T,
transpose As TransposeOperation,
rightFactor As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ MultiplyAndAddAsLeftFactorCore(
T leftFactor,
Vector<T>^ left,
T productFactor,
TransposeOperation transpose,
Vector<T>^ rightFactor,
Vector<T>^ result
) override
abstract MultiplyAndAddAsLeftFactorCore :
leftFactor : 'T *
left : Vector<'T> *
productFactor : 'T *
transpose : TransposeOperation *
rightFactor : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override MultiplyAndAddAsLeftFactorCore :
leftFactor : 'T *
left : Vector<'T> *
productFactor : 'T *
transpose : TransposeOperation *
rightFactor : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- leftFactor
- Type: T
The scale factor for the vector. - left
- Type: Extreme.Mathematics.GenericVectorT
The vector in the left term of the addition. - productFactor
- Type: T
The scale factor for the product. - transpose
- Type: Extreme.MathematicsTransposeOperation
The transpose operation to perform on the linear operator
before multiplying. - rightFactor
- Type: Extreme.Mathematics.GenericVectorT
The right factor of the product. - result
- Type: Extreme.Mathematics.GenericVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector that is the sum of
leftFactor times
left and
productFactor times the product of
this matrix and
rightFactor.
Numerical Libraries
Supported in: 5.x
Reference