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

Note: This API is now obsolete.
Multiplies a matrix on the left by this matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the static Multiply method instead.")]
public Matrix<T> Multiply(
	TransposeOperation operation,
	Matrix<T> matrix
)

Parameters

operation  TransposeOperation
The operation to be performed on this instance before multiplying.
matrix  Matrix<T>
The right operand of the multiplication.

Return Value

Matrix<T>
A matrix that is the product of this instace, transformed as specified by operation, and matrix.

Exceptions

ArgumentNullException

matrix is null.

See Also