math.sld 387 B

1234567891011
  1. (define-library (macduffie math)
  2. (import (scheme base) (scheme inexact) (scheme complex))
  3. (export deg->rad rad->deg dsin dcos dtan dasin dacos datan
  4. e pi i factorial gamma inverse-gamma inverse-factorial
  5. anti-nlogn mean variance deviation z-scores
  6. normal-pmf normal-cdf integrate primes prime? ~=
  7. percent-scale)
  8. (include "math.body.scm"))