ComplexMatrixElementMultiplyAssign Method |
Sets the product
ComplexMatrix to equal the element-wise multiplication
of the
multiplicand times the
multiplier.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 22.1.413.0 (22.1.413.0)
Syntaxpublic static void ElementMultiplyAssign(
ComplexMatrix multiplicand,
ComplexMatrix multiplier,
ComplexMatrix product
)
Public Shared Sub ElementMultiplyAssign (
multiplicand As ComplexMatrix,
multiplier As ComplexMatrix,
product As ComplexMatrix
)
public:
static void ElementMultiplyAssign(
ComplexMatrix^ multiplicand,
ComplexMatrix^ multiplier,
ComplexMatrix^ product
)
static member ElementMultiplyAssign :
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.
ExceptionsException | Condition |
---|
ArgumentNullException | Thrown if any of the parameters are . |
InvalidOperationException | Thrown if the dimensions of the product parameter do not match the dimensions of the multiplicand parameter. |
InvalidOperationException | Thrown if the dimensions of the product parameter do not match the dimensions of the multiplier parameter. |
See Also