Matrix<T>.Multiply(Vector<T>, Matrix<T>) Operator

Multiplies a Vector<T> by a Matrix<T>.

Definition

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

Parameters

vector  Vector<T>
A vector.
matrix  Matrix<T>
A Matrix<T>.

Return Value

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

Exceptions

DimensionMismatchExceptionThe length of vector does not equal the number of columns in matrix.

See Also