racket/collects/frtime/frlibs/math.rkt
2013-03-14 11:01:10 -04:00

15 lines
389 B
Racket

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; math.rkt: some extra math routines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(module math frtime/frtime-lang-only
(require (only-in racket/math pi sqr sgn conjugate sinh cosh))
(provide (lifted sqr sgn conjugate sinh cosh))
(provide pi e)
;; circular constants and aliases
(define e (exp 1.0)))