Returns the matrix inner product of the transpose of a given matrix
and a second matrix.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static FloatMatrix TransposeProduct( FloatMatrix A, FloatMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function TransposeProduct ( _ A As FloatMatrix, _ B As FloatMatrix _ ) As FloatMatrix |
| Visual C++ |
|---|
public: static FloatMatrix^ TransposeProduct( FloatMatrix^ A, FloatMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.
Return Value
A new matrix containing the inner product of the transpose of A and B.
Remarks
This function is equivalent to calling
NMathFunctions.Product( NMathFunctions.Transpose(A), B ).