Click or drag to resize

NMathFunctionsProduct(FloatMatrix, FloatVector) Method

Computes the product of a matrix and vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatVector Product(
	FloatMatrix A,
	FloatVector x
)

Parameters

A  FloatMatrix
An m x n matrix.
x  FloatVector
A vector with n elements.

Return Value

FloatVector
The product of A and x.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if A and B are not of compatible dimensions.
Remarks
Vector xis treated as a column vector by this function.
See Also