Computes the matrix inner product of two matrices and
returns the result.
Namespace: CenterSpace.NMath.CoreAssembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0
Syntax
| C# |
|---|
public static DoubleComplexMatrix Product( DoubleComplexMatrix A, DoubleComplexMatrix B ) |
| Visual Basic |
|---|
Public Shared Function Product ( _ A As DoubleComplexMatrix, _ B As DoubleComplexMatrix _ ) As DoubleComplexMatrix |
| Visual C++ |
|---|
public: static DoubleComplexMatrix^ Product( DoubleComplexMatrix^ A, DoubleComplexMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::..DoubleComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::..DoubleComplexMatrix
A matrix.
Return Value
A new matrix containing the product of A and B.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::..MismatchedSizeException | Thrown if A and B do not have compatible sizes. |