Matrix<T>.AddScaledProductInPlace(T, Matrix<T>, TransposeOperation, Matrix<T>, TransposeOperation) Method

Adds the scaled product of two matrices to another matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> AddScaledProductInPlace(
	T factor,
	Matrix<T> leftFactor,
	TransposeOperation leftOperation,
	Matrix<T> rightFactor,
	TransposeOperation rightOperation
)

Parameters

factor  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.
rightFactor  Matrix<T>
The right operand of the multiplication.
rightOperation  TransposeOperation
The operation to be performed on rightFactor before multiplying.

Return Value

Matrix<T>
A reference to this matrix, after adding factor times the product of leftFactor transformed as specified by leftOperation with rightFactor transformed as specified by rightOperation.

See Also