Click or drag to resize
ComplexDivision Operator
Returns the result of dividing the specified complex number into this complex number.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static Complex operator /(
	Complex opand1,
	Complex opand2
)

Parameters

opand1
Type: Algs4NetComplex
the first complex number
opand2
Type: Algs4NetComplex
the second complex number

Return Value

Type: Complex
the complex number whose value is (opand1 / opand2)
See Also