Computes the matrix inner product of the transpose of a given matrix
and a second matrix and places the result in a third matrix.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void TransposeProduct( DoubleComplexMatrix A, DoubleComplexMatrix B, DoubleComplexMatrix C ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub TransposeProduct ( _ A As DoubleComplexMatrix, _ B As DoubleComplexMatrix, _ C As DoubleComplexMatrix _ ) |
| Visual C++ |
|---|
public: static void TransposeProduct( DoubleComplexMatrix^ A, DoubleComplexMatrix^ B, DoubleComplexMatrix^ C ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
- C
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix in which to place the result of the transpose product.
Remarks
This function is equivalent to calling
NMathFunctions.Product( NMathFunctions.Transpose(A), B, C ).
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if A, B and C do not all have compatible dimensions. |