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

Multiplies a matrix by the linear operator and returns the result.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Matrix<T> MultiplyAsLeftCore(
	TransposeOperation transpose,
	Matrix<T> right,
	Matrix<T> result
)

Parameters

transpose  TransposeOperation
The operation to be performed on the operator before multiplying.
right  Matrix<T>
The right operand of the multiplication.
result  Matrix<T>
The vector that is to hold the result. May be null.

Return Value

Matrix<T>
A vector that is the product of this matrix and right.

See Also