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

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatVector TransposeProduct(
	FloatMatrix A,
	FloatVector x
)
Visual Basic (Declaration)
Public Shared Function TransposeProduct ( _
	A As FloatMatrix, _
	x As FloatVector _
) As FloatVector
Visual C++
public:
static FloatVector^ TransposeProduct(
	FloatMatrix^ A, 
	FloatVector^ x
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
An m x n matrix.
x
Type: CenterSpace.NMath.Core..::.FloatVector
A vector with m elements.

Return Value

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