src/pylib/Lib/cmath

Source   Edit  

Lib/cmath

complex math library for Python's complex

Consts

infj: PyComplex = (re: 0.0, im: inf)
Source   Edit  
nanj: PyComplex = (re: 0.0, im: nan)
Source   Edit  

Procs

func isclose(a, b: Complex; rel_tol = 1e-9; abs_tol = 0.0): bool
Source   Edit  
func isfinite(z: PyTComplex): bool
Source   Edit  
func isnan(z: PyTComplex): bool
Source   Edit  
func log[T](z: PyTComplex[T]): PyTComplex[T]
ln(z) Source   Edit  
func log[T](z: PyTComplex[T]; base: SomeNumber | PyTComplex[T]): PyTComplex[T]
Source   Edit  
func rect[T](r, phi: T): PyTComplex[T]
Source   Edit  

Templates

template acos(x: PyTComplex): untyped
Source   Edit  
template acosh(x: PyTComplex): untyped
Source   Edit  
template asin(x: PyTComplex): untyped
Source   Edit  
template asinh(x: PyTComplex): untyped
Source   Edit  
template atan(x: PyTComplex): untyped
Source   Edit  
template atanh(x: PyTComplex): untyped
Source   Edit  
template exp(z: PyTComplex): PyTComplex
Source   Edit  
template log10(z: PyTComplex): PyTComplex
Source   Edit  
template phase(z: PyTComplex): PyTComplex
Source   Edit  
template polar(z: PyTComplex): PyTComplex
Source   Edit  
template sin(z: PyTComplex): PyTComplex
Source   Edit  
template sqrt(z: PyTComplex): PyTComplex
Source   Edit