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

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected override Vector<T> MultiplyAsLeftCore(
	TransposeOperation operation,
	Vector<T> right,
	Vector<T> result
)

Parameters

operation  TransposeOperation
 
right  Vector<T>
The right operand of the multiplication.
result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

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

See Also