home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / misc / math / excalc / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-21  |  2.9 KB  |  86 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. ExCalc
  6. .type
  7. Utility
  8. .short
  9. GUI/CLI calculator w/ 52 digit accuracy
  10. .description
  11. ExCalc is the first calculator available for any computer which provides
  12. calculations which can be accurate to over 50 digits!  As well all decimals
  13. are represented exactly so you never loose pennies during a calculation.  All
  14. this power is made more accessible through the choice of a GUI interface or
  15. command line entry of complete equations -- not just numbers.  Any entered
  16. equation can be recalled just by clicking on a history window.  You also have
  17. access to sixteen memory locations which can store any number.
  18.  
  19. Other features:
  20.     o AREXX interface to calculator functions (NEW)
  21.     o plotting capability of single-variable functions (NEW)
  22.     o automatic history logging of both equations and results (NEW)
  23.     o no more nag requesters (NEW)
  24.     o full scientific, transcendental, power, and logarithmic operations
  25.     o programmer functions like and, or, shift, rotate, etc., on 172-bits!
  26.     o scrolling history window of equations, memory, or results
  27.     o choice of radian, degree, or gradian angle measurements
  28.     o from 8 to 52 digits
  29.     o numbers from -1E9999 to 1E9999
  30.     o exact decimal number representation
  31.     o convenience functions like square and cube roots, reciprocal, etc
  32.     o storage of equations and memory as long as your computer is on
  33.     o custom fonts with square root and cube root characters
  34.     o complete calculator engine source code (in Oberon-2) is included
  35.  
  36. Includes Oberon-2 source code, CLI and GUI binaries.
  37. .version
  38. 1.10
  39. .date
  40. 1995.07.30
  41. .author
  42. Michael Griebling
  43. .requirements
  44. Requires OS 2.0+
  45. .distribution
  46. Shareware
  47. .address
  48. 150 Clark Blvd., Suite One
  49. Brampton, Ontario
  50. Canada, L6T 4Y8
  51. .docs
  52. ExCalc.guide
  53. .described-by
  54. Michael Griebling (mgriebling@bix.com)
  55. .submittal
  56. Submitted via ftp directly by the author.
  57. .contents
  58. ExCalc      ExCalc is the best GUI/CLI-based calculator for any computer.
  59.           New features include an AREXX interface and plot generation
  60.           of any entered equation (with one dependent variable).
  61.           Calculations are accurate up to 52 digits with exact decimal
  62.           fractions.  Full scientific, transcendental, power, programmer,
  63.           hyperbolic and logarithmic operations.  Scrolling history window
  64.           with semi-permanent memory & equation storage.  Choice of many
  65.           number formats and much more!
  66.           Version 1.1, OS2.0+, shareware, Oberon-2 source, CLI/GUI binaries.
  67.           Author: Michael Griebling
  68. .aminet-dir
  69. misc/math
  70. .execute
  71. set choice `RequestChoice "ExCalc" "Please select an option" "View Guide" "Run Program" "Cancel"`
  72.  
  73. if $choice EQ "0"
  74.   quit 5
  75. endif
  76.  
  77. if $choice EQ "1"
  78.   MetaTool ExCalc.guide GUIDE
  79. endif
  80.  
  81. if $choice EQ "2"
  82.   assign fonts: fonts/ ADD
  83.   ExCalcV1.1
  84.   assign fonts: Fonts/ REMOVE
  85. endif
  86.