CprintPd   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/contrib/gsl.xtm

Implementation

;; print polar (degrees)
(bind-func CprintPd
  (lambda (num:gsl_complex*)
    (printf "(%f cis %f)\n" (Cmag num) (* 57.295791 (Carg num)))))


Back to Index