ComplexMatrixMultiply Method (ComplexMatrix, ComplexMatrix) |
Creates a
ComplexMatrix which is the linear algebra multiplication of the two given matrices.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static ComplexMatrix Multiply(
ComplexMatrix multiplicand,
ComplexMatrix multiplier
)
Public Shared Function Multiply (
multiplicand As ComplexMatrix,
multiplier As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ Multiply(
ComplexMatrix^ multiplicand,
ComplexMatrix^ multiplier
)
static member Multiply :
multiplicand : ComplexMatrix *
multiplier : ComplexMatrix -> ComplexMatrix
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to multiply. - multiplier
- Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to multiply.
Return Value
Type:
ComplexMatrixA
ComplexMatrix which is the multiplication of this matrix and the given matrix.
Exceptions Exception | Condition |
---|
InvalidOperationException |
Thrown when the column dimension of multiplicand does not match the row dimension of multiplier.
|
See Also