Adds the 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> AddProduct<T>(
Matrix<T> left,
Matrix<T> leftFactor,
Matrix<T> rightFactor
)
Public Shared Function AddProduct(Of T) (
left As Matrix(Of T),
leftFactor As Matrix(Of T),
rightFactor As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ AddProduct(
Matrix<T>^ left,
Matrix<T>^ leftFactor,
Matrix<T>^ rightFactor
)
static member AddProduct :
left : Matrix<'T> *
leftFactor : Matrix<'T> *
rightFactor : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The left operand of the addition. - leftFactor
- Type: Extreme.MathematicsMatrixT
A matrix that acts as the left operand of the multiplication. - rightFactor
- Type: Extreme.MathematicsMatrixT
The right operand of the multiplication.
Type Parameters
- T
Return Value
Type:
MatrixTThe sum of
left with
product of
leftFactor with
rightFactor.
Reference