123456789101112131415161718 |
- %%%%%%%%%%%%%%%%%%%%%
- % SPECIAL FUNCTIONS
- %%%%%%%%%%%%%%%%%%%%%
- % Load special functions
- load_package specfn$
- % Gamma function
- Gamma(0.5);
- % Enable real arithmetic
- on rounded$
- % Zeta function
- Zeta(3/2);
- % Bessel function of the first kind and order 3
- besselj(3, 0.5);
|