Vector<T>.MultiplyInPlace(Matrix<T>, MatrixOperationSide) Method

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 virtual Vector<T> MultiplyInPlace(
	Matrix<T> matrix,
	MatrixOperationSide side
)

Parameters

matrix  Matrix<T>
A Matrix<T>.
side  MatrixOperationSide
A MatrixOperationSide value that indicates whether the matrix is the left or right operand of the multiplication.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionmatrix is null
DimensionMismatchException The number of rows or columns of matrix does not equal the length of this instance.

-or-

matrix is not a square matrix.

See Also