Warning: This is the manual of the legacy Guile 2.0 series. You may want to read the manual of the current stable series instead.
Next: Arithmetic, Previous: Conversion, Up: Numbers [Contents][Index]
Return a complex number constructed of the given real-part and imaginary-part parts.
Return the complex number mag * e^(i * ang).
Return the real part of the number z.
Return the imaginary part of the number z.
Return the magnitude of the number z. This is the same as
abs
for real arguments, but also allows complex numbers.
Return the angle of the complex number z.
Like scm_make_rectangular
or scm_make_polar
,
respectively, but these functions take double
s as their
arguments.
Returns the real or imaginary part of z as a double
.
Returns the magnitude or angle of z as a double
.