Multiplies the matrix with a vector, adds the scaled result to another scaled
vector, and returns the result.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
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.MathematicsVectorT
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.MathematicsVectorT
The right factor of the product. - result
- Type: Extreme.MathematicsVectorT
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.
Reference