Matrix.Add Product Into<T> Method
Adds the product of two matrices to another matrix.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The sum of left with product of leftFactor with rightFactor.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Matrix<T> AddProductInto<T>(
Matrix<T> left,
Matrix<T> leftFactor,
Matrix<T> rightFactor,
Matrix<T> result
)
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.
- result Matrix<T>
- The matrix that is to hold the result. May be null.
Type Parameters
- T
Return Value
Matrix<T>The sum of left with product of leftFactor with rightFactor.