Click or drag to resize

SquareMatrixMultiply Operator (SquareMatrix, ColumnVector)

Computes the product of a square 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 *(
	SquareMatrix A,
	ColumnVector v
)

Parameters

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

Return Value

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