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

Multiplies a vector by a matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> MultiplyInto<T>(
	Matrix<T> matrix,
	TransposeOperation operation,
	Vector<T> vector,
	Vector<T> result
)

Parameters

matrix  Matrix<T>
A matrix.
operation  TransposeOperation
The operation to apply to matrix before multiplying.
vector  Vector<T>
A vector.
result  Vector<T>
The vector that is to hold the result. May be null.

Type Parameters

T

Return Value

Vector<T>

Exceptions

ArgumentNullException

matrix is null

-or-

vector is null

See Also