Click or drag to resize

NMathFunctionsProduct(DoubleComplexMatrix, DoubleComplexVector) Method

Computes the product of a matrix and a vector.

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

Parameters

A  DoubleComplexMatrix
An m x n matrix.
x  DoubleComplexVector
A vector with n elements.

Return Value

DoubleComplexVector
The product of A and x.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if x does not have a length equal to the number of columns in A.
Remarks
Vector xis treated as a column vector by this function.
See Also