Matrix.Add Product<T> Method
            
            
            Adds the product of two matrices to another matrix.
            
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
The sum of left with product of leftFactor with rightFactor.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public static Matrix<T> AddProduct<T>(
	Matrix<T> left,
	Matrix<T> leftFactor,
	Matrix<T> rightFactor
)
Parameters
- left Matrix<T>
 - The left operand of the addition.
 - leftFactor Matrix<T>
 - A matrix that acts as the left operand of the multiplication.
 - rightFactor Matrix<T>
 - The right operand of the multiplication.
 
Type Parameters
- T
 
Return Value
Matrix<T>The sum of left with product of leftFactor with rightFactor.