RectangularMatrixMultiply(RectangularMatrix, ColumnVector) Operator

Computes the product of a rectangular matrix and a column vector.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static ColumnVector operator *(
	RectangularMatrix A,
	ColumnVector v
)

Parameters

A  RectangularMatrix
The matrix.
v  ColumnVector
The column vector.

Return Value

ColumnVector
The column vector Av.

Exceptions

ArgumentNullExceptionA or v is null.
DimensionMismatchExceptionThe column count of A is not the same as the dimension of v.

See Also