rataprx.red 563 B

123456789101112131415161718
  1. module rataprx; % Rational Approximations Package.
  2. % Author: Lisa Temme (Student of the University of Bath in
  3. % placement at ZIB Berlin)
  4. % Send questions or comments to Winfried Neun (neun@zib.de), please.
  5. % This package consists of: Periodic Decimal Representation;
  6. % Generalized Continued Fractions;
  7. % Continued Fractions for numbers;
  8. % Pade Function.
  9. create!-package('(rataprx decrep contfrac contfr primitive pade),nil);
  10. endmodule;
  11. end;