Adds the scaled product of two matrices to another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> AddScaledProductInto<T>(
Matrix<T> left,
T factor,
Matrix<T> leftFactor,
TransposeOperation leftOperation,
Matrix<T> rightFactor,
TransposeOperation rightOperation,
Matrix<T> result
)
Public Shared Function AddScaledProductInto(Of T) (
left As Matrix(Of T),
factor As T,
leftFactor As Matrix(Of T),
leftOperation As TransposeOperation,
rightFactor As Matrix(Of T),
rightOperation As TransposeOperation,
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ AddScaledProductInto(
Matrix<T>^ left,
T factor,
Matrix<T>^ leftFactor,
TransposeOperation leftOperation,
Matrix<T>^ rightFactor,
TransposeOperation rightOperation,
Matrix<T>^ result
)
static member AddScaledProductInto :
left : Matrix<'T> *
factor : 'T *
leftFactor : Matrix<'T> *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The left operand of the addition. - factor
- Type: T
The scale factor for the matrix-matrix product. - leftFactor
- Type: Extreme.MathematicsMatrixT
A matrix that acts as the left operand of the multiplication. - leftOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on leftFactor before multiplying. - rightFactor
- Type: Extreme.MathematicsMatrixT
The right operand of the multiplication. - rightOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on rightFactor before multiplying. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
MatrixTThe sum of
left with
factor times the
product of
leftFactor transformed as specified by
leftOperation
with
rightFactor transformed as specified by
rightOperation.
Reference