<Complex>.power (z): return the power of “z” in complex number.
Syntax: C is a complex number; Z is real number and S is Complex:
S=C.power (Z)
<Complex>.integerpower (n): perform “n” times cross operation on complex number and return new complex number. Use this function instead of Power function if exponent is an integer value.
Syntax: C is a complex number; N is integer number and S is Complex:
S=C.integerpower (N)
<Complex>. integerRoot(n): return the Nth root of complex number.
Syntax: C is a complex number; N is integer number and S is Complex:
S=C. integerRoot (N)
<Complex>. squareRootNearer(Z):Computes that square root of this complex number that is nearer to previous than to minus previous.
Syntax: C, S and Z are Complex numbers:
S=C. squareRootNearer (Z)
<Complex>.exponential (): return the exponential of complex number.
Syntax: C is a complex number; e is exponent number and S is Complex:
S=C.exponential()
<Complex>. logaritm(): return the logarim of complex number.
Syntax: C and S are Complex numbers:
S=C.logaritm()
<Complex>.logNearer(z):Computes that complex logarithm of this complex number that is nearest to previous.
Syntax: C, S and Z are Complex numbers:
S=C.logNearer (Z)