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

Multiplies a 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,
	Matrix<T> right,
	Matrix<T> result
)

Parameters

left  LinearOperator<T>
The left operand.
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 leftwith the matrix right.

See Also