make-rectangular
-- r7rs
Definition procedure
;
make-rectangular
(from vonuvoli
);Procedure variants:
(((x real-not-inf-not-nan) real-zero) -> ((x real-not-inf-not-nan)))
x
of type real-not-inf-not-nan
;real-zero
;x
of type real-not-inf-not-nan
;((real-not-inf-not-nan real-not-inf-not-nan) -> (complex-not-inf-not-nan))
real-not-inf-not-nan
;real-not-inf-not-nan
;complex-not-inf-not-nan
;scheme:complex
-- (scheme complex)
;scheme
-- (scheme)
;(make-rectangular x_1 x_2) (make-polar x_3 x_4) (real-part z) (imag-part z) (magnitude z) (angle z)
Let
x_1
,x_2
,x_3
, andx_4
be real numbers andz
be a complex number such thatz = x_1 + x_2*i = x_3 * e^(x_4*i)
Then all of(make-rectangular x_1 x_2) ===> z (make-polar x_3 x_4) ===> z (real-part z) ===> x_1 (imag-part z) ===> x_2 (magnitude z) ===> | x_3 | (angle z) ===> x_angle
are true, where
-pi <= x_angle <= pi
withx_angle = x_4 + 2 pi n
for some integern
.The
make-polar
procedure may return an inexact complex number even if its arguments are exact. Thereal-part
andimag-part
procedures may return exact real numbers when applied to an inexact complex number if the corresponding argument passed tomake-rectangular
was exact.Rationale: The
magnitude
procedure is the same asabs
for a real argument, butabs
is in the base library, whereasmagnitude
is in the optional complex library.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.