ComplexMatrixMultiplyAssign Method |
Sets the product
ComplexMatrix to equal the linear algebra multiplication of
multiplicand times
multiplier.
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 void MultiplyAssign(
ComplexMatrix multiplicand,
ComplexMatrix multiplier,
ComplexMatrix product
)
Public Shared Sub MultiplyAssign (
multiplicand As ComplexMatrix,
multiplier As ComplexMatrix,
product As ComplexMatrix
)
public:
static void MultiplyAssign(
ComplexMatrix^ multiplicand,
ComplexMatrix^ multiplier,
ComplexMatrix^ product
)
static member MultiplyAssign :
multiplicand : ComplexMatrix *
multiplier : ComplexMatrix *
product : ComplexMatrix -> unit
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to multiply. - multiplier
- Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to multiply. - product
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown when multiplicand, multiplier, or product is .
|
InvalidOperationException |
Thrown when the row dimension of multiplier does not match the column dimension of multiplicand,
or when the row dimension of product does not match the row dimension of multiplicand,
or when the column dimension of product does not match the column dimension of multiplier.
|
See Also