Special_Functions.red 273 B

123456789101112131415161718
  1. %%%%%%%%%%%%%%%%%%%%%
  2. % SPECIAL FUNCTIONS
  3. %%%%%%%%%%%%%%%%%%%%%
  4. % Load special functions
  5. load_package specfn$
  6. % Gamma function
  7. Gamma(0.5);
  8. % Enable real arithmetic
  9. on rounded$
  10. % Zeta function
  11. Zeta(3/2);
  12. % Bessel function of the first kind and order 3
  13. besselj(3, 0.5);