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

Multiplies a possibly transposed 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,
	TransposeOperation transpose,
	Vector<T> right,
	Vector<T> result
)

Parameters

left  LinearOperator<T>
The left operand.
transpose  TransposeOperation
The operation to be performed on the matrix left before multiplying.
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 left, transformed as specified by transpose, with the vector right.

See Also