ComplexMatrixElementDivide Method |
Creates a new
ComplexMatrix which is the element-by-element division 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 ElementDivide(
ComplexMatrix dividend,
ComplexMatrix divisor
)
Public Shared Function ElementDivide (
dividend As ComplexMatrix,
divisor As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ ElementDivide(
ComplexMatrix^ dividend,
ComplexMatrix^ divisor
)
static member ElementDivide :
dividend : ComplexMatrix *
divisor : ComplexMatrix -> ComplexMatrix
Parameters
- dividend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix whose elements will form the numerators. - divisor
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix whose elements will form the denominators.
Return Value
Type:
ComplexMatrixA
ComplexMatrix which equals the element division of the two given matrices.
Exceptions See Also