Computes the matrix inner product of the given matrix
with the transpose of the second matrix.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
[ObsoleteAttribute("Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")] public static DoubleMatrix ProductTranspose( DoubleMatrix A, DoubleMatrix B ) |
| Visual Basic (Declaration) |
|---|
<ObsoleteAttribute("Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")> _ Public Shared Function ProductTranspose ( _ A As DoubleMatrix, _ B As DoubleMatrix _ ) As DoubleMatrix |
| Visual C++ |
|---|
[ObsoleteAttribute(L"Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")] public: static DoubleMatrix^ ProductTranspose( DoubleMatrix^ A, DoubleMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
Remarks
This function is equivalent to calling
NMathFunctions.Product( A, NMathFunctions.Transpose(B) ).
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if A, B and C do not all have compatible dimensions. |