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

Multiplies a matrix and a vector.

Definition

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

Parameters

left  LinearOperator<T>
The left operand.
right  Vector<T>
The right operand.
result  Vector<T>
The vector that is to hold the result. May be null.

Type Parameters

T

Return Value

Vector<T>
The product of leftwith the vector right.

See Also