Click or drag to resize

RectangularMatrixMultiply Operator (RectangularMatrix, ColumnVector)

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

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static ColumnVector operator *(
	RectangularMatrix A,
	ColumnVector v
)

Parameters

A
Type: Meta.Numerics.MatricesRectangularMatrix
The matrix.
v
Type: Meta.Numerics.MatricesColumnVector
The column vector.

Return Value

Type: ColumnVector
The column vector Av.
Exceptions
ExceptionCondition
ArgumentNullExceptionA or v is null.
DimensionMismatchExceptionThe column count of A is not the same as the dimension of v.
See Also