Click or drag to resize

NMathFunctionsTransposeProduct(DoubleMatrix, DoubleVector) Method

Computes the product of the transpose of a given matrix and a vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleVector TransposeProduct(
	DoubleMatrix A,
	DoubleVector x
)

Parameters

A  DoubleMatrix
An m x n matrix.
x  DoubleVector
A vector with m elements.

Return Value

DoubleVector
The product of the transpose of A and x.
Remarks
Vectorxis treated as a column vector by this function. This function is equivalent to calling NMathFunctions.Product(NMathFunctions.Transpose(A),x).
See Also