home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / misc / math / ecalc / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-12  |  1.1 KB  |  57 lines

  1. .name
  2. eCalc
  3. .type
  4. Math Tool
  5. .short
  6. Program to calculate e (2.71828...)
  7. .description
  8. eCalc is a CLI-only program to calculate the mathematical number e to
  9. any number of decimal places (memory and time limit how many). It is made in
  10. very optimized assembler and uses the 64 bit 68020 math instructions to be
  11. as fast as possible. On my 68020/28 it calculates e to 20000 decimals in
  12. under a minute. It features many options: How often should we save/output
  13. the current calculation, option to show how far it has come and how long
  14. a calculation will take.
  15. .version
  16. 2.6
  17. .date
  18. 1995.10.03
  19. .author
  20. Steffen Thorsen
  21. .distribution
  22. Freeware
  23. .requirements
  24. 68020 or better CPU required, Kickstart 2.04 or better
  25. .exectype
  26. 68020
  27. .tested
  28. A1200 with Fast Memory
  29. tested with up to 1000008 decimals
  30. .address
  31. Fjordg 8A
  32. N-4300 Sandnes
  33. Norway
  34. .installsize
  35. 14K
  36. .docs
  37. eCalc.doc
  38. .described-by
  39. Steffen Thorsen
  40. .submittal
  41. downloaded via ftp from Aminet
  42. .aminet-dir
  43. misc/math
  44. .execute
  45. set choice `RequestChoice "eCalc" "Please select an option" "View Doc" "Run Program" "Cancel"`
  46. if $choice EQ "0"
  47.   quit 5
  48. endif
  49.  
  50. if $choice EQ "1"
  51.   MetaTool eCalc.doc TEXT
  52. endif
  53.  
  54. if $choice EQ "2"
  55.   eCalc
  56. endif
  57.