Matrix.MultiplyInto<T>(LinearOperator<T>, TransposeOperation, Matrix<T>, Matrix<T>) Method

Multiplies a possibly transposed matrix and a matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> MultiplyInto<T>(
	LinearOperator<T> left,
	TransposeOperation transpose,
	Matrix<T> right,
	Matrix<T> result
)

Parameters

left  LinearOperator<T>
The left operand.
transpose  TransposeOperation
The operation to be performed on the matrix left before multiplying.
right  Matrix<T>
The right operand.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Type Parameters

T

Return Value

Matrix<T>
The product of left, transformed as specified by transpose, with the matrix right.

See Also