mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 13:49:16 +02:00
New file
This commit is contained in:
parent
441f0d3765
commit
1bd3eb2df3
1 changed files with 25 additions and 0 deletions
25
docs/api/scheme/complex.md
Normal file
25
docs/api/scheme/complex.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Complex Library
|
||||||
|
|
||||||
|
The `(scheme complex)` library exports procedures which are typically only useful with non-real numbers.
|
||||||
|
|
||||||
|
For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.pdf).
|
||||||
|
|
||||||
|
- [`angle`](#angle)
|
||||||
|
- [`imag-part`](#imag-part)
|
||||||
|
- [`magnitude`](#magnitude)
|
||||||
|
- [`make-polar`](#make-polar)
|
||||||
|
- [`make-rectangular`](#make-rectangular)
|
||||||
|
- [`real-part`](#real-part)
|
||||||
|
|
||||||
|
#angle
|
||||||
|
(angle z)
|
||||||
|
#imag-part
|
||||||
|
(imag-part x)
|
||||||
|
#magnitude
|
||||||
|
(magnitude z)
|
||||||
|
#make-polar
|
||||||
|
(make-polar x y)
|
||||||
|
#make-rectangular
|
||||||
|
(make-rectangular x y)
|
||||||
|
#real-part
|
||||||
|
(real-part x)
|
Loading…
Add table
Reference in a new issue