ComplexMatrixElementMultiply Method (ComplexMatrix, ComplexMatrix) |
Creates a new
ComplexMatrix which is the element-by-element 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 ElementMultiply(
ComplexMatrix multiplicand,
ComplexMatrix multiplier
)
Public Shared Function ElementMultiply (
multiplicand As ComplexMatrix,
multiplier As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ ElementMultiply(
ComplexMatrix^ multiplicand,
ComplexMatrix^ multiplier
)
static member ElementMultiply :
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 equals the element multiplication of the two given matrices.
Exceptions Exception | Condition |
---|
InvalidOperationException |
Thrown when the dimensions of multiplicand do not match the dimensions of multiplier.
|
See Also