Divides one complex number by another and returns the result.
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 Complex Divide(
Complex dividend,
Complex divisor
)
Public Shared Function Divide (
dividend As Complex,
divisor As Complex
) As Complex
public:
static Complex Divide(
Complex dividend,
Complex divisor
)
static member Divide :
dividend : Complex *
divisor : Complex -> Complex
Parameters
- dividend
- Type: AGI.Foundation.CoordinatesComplex
The complex number to be divided. - divisor
- Type: AGI.Foundation.CoordinatesComplex
The complex number to divide by.
Return Value
Type:
ComplexThe complex number that is the result of the division.
See Also