Subtracts the product of two matrices from another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> SubtractProductInto<T>(
Matrix<T> left,
Matrix<T> leftFactor,
Matrix<T> rightFactor,
Matrix<T> result
)
Public Shared Function SubtractProductInto(Of T) (
left As Matrix(Of T),
leftFactor As Matrix(Of T),
rightFactor As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ SubtractProductInto(
Matrix<T>^ left,
Matrix<T>^ leftFactor,
Matrix<T>^ rightFactor,
Matrix<T>^ result
)
static member SubtractProductInto :
left : Matrix<'T> *
leftFactor : Matrix<'T> *
rightFactor : Matrix<'T> *
result : 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. - 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
product of
leftFactor with
rightFactor.
Reference