Matrix<T>.Multiply As Right Core Method
Computes the scaled product of two matrices.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
productFactor times the product of leftFactor transformed as specified by leftOperation with this matrix transformed as specified by rightOperation.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
protected virtual Matrix<T> MultiplyAsRightCore(
T productFactor,
Matrix<T> leftFactor,
TransposeOperation leftOperation,
TransposeOperation rightOperation,
Matrix<T>? result
)
Parameters
- productFactor T
- The scale factor for the matrix-matrix product.
- leftFactor Matrix<T>
- A matrix that acts as the left operand of the multiplication.
- leftOperation TransposeOperation
- The operation to be performed on leftFactor before multiplying.
- rightOperation TransposeOperation
- The operation to be performed on this matrix before multiplying.
- result Matrix<T>
- The matrix that is to hold the result. May be null.
Return Value
Matrix<T>productFactor times the product of leftFactor transformed as specified by leftOperation with this matrix transformed as specified by rightOperation.