Handbook Glossary
factorcode.org
(complex/) ( x y -- r i m )


Vocabulary
math.complex.private

Inputs
xan object
yan object


Outputs
ran object
ian object
man object


Definition
USING: kernel math math.functions ;

IN: math.complex.private

: (complex/) ( x y -- r i m )
[ [ *re + ] [ *im - ] 2bi ] keep absq ; inline