| Value | Description |
val chop : Complex -> complex |
Chop the real and imaginary parts of a complex number,
rounding tiny numbers to zero
|
val pow : complex -> complex -> Complex |
Calculate z1^z2
|
val product : int -> int -> (int -> complex) -> complex |
Multiply the results of the given function over the given integer range
|
val string_of_complex : Complex -> string |
Pretty print a complex number, truncating small real and imaginary parts to zero.
Can be used as a pretty printer for complex numbers with:
fsi.AddPrinter(Misc.Complex.string_of_complex)
|
val sum : int -> int -> (int -> Complex) -> complex |
Sum the results of the given function over the given integer range
|