home *** CD-ROM | disk | FTP | other *** search
/ Collection of Education / collectionofeducationcarat1997.iso / SCIENCE / PFIVE.ZIP / POINT5.DOC < prev   
Encoding:
Text File  |  1991-12-09  |  12.4 KB  |  299 lines

  1.  
  2.  
  3.  
  4.                              POINT FIVE
  5.                 A Data Analysis and Modeling Program
  6.  
  7.                            Copyright 1985
  8.                    by Pacific Crest Software, Inc.
  9.                          All Rights Reserved
  10.               No part of the system may be photocopied
  11.                    without express permission of 
  12.                     Pacific Crest Software, Inc.
  13.  
  14.                        Pacific Crest Software
  15.                           887 NW Grant Ave.
  16.                         Corvallis, OR 97330  
  17.                            (503) 754-1067
  18.  
  19.  
  20. POINT FIVE is an easy to use supercalculator that allows you to begin
  21. using it as a simple desk calculator with graphics, but expands in
  22. power as your knowledge on how to use its capabilities grows.
  23.  
  24. NOTICE 
  25.  
  26. THIS IS NOT FREE SOFTWARE! If you paid a "public domain" vendor for
  27. this program, you paid for the service of copying the program, and not
  28. for the program itself.  If you make regular use of POINT FIVE, you
  29. should register your copy.  This is a fully functional version of
  30. POINT FIVE and not "crippled" in any way. 
  31.  
  32. OVERVIEW:  In POINT FIVE, you see a Scratchpad in the lower part of
  33. the screen, where you do calculations.  The upper part of the screen
  34. displays the results of calculations.  Lines in the Scratchpad can be
  35. edited and reexecuted.  With a Function Key you can call a Data Editor
  36. that allows you create or edit variables.  These variables can be
  37. scalars (a single number), vectors (a column of numbers) or a matrix
  38. (multiple columns).  Within the Scratchpad there are over 150
  39. mathematical, statistical, and financial functions for operating on
  40. these variables.  Results can be displayed graphically with ease. 
  41. Data can be imported or exported to other systems.  A Help system (F1)
  42. provides the equivalent of a manual on-line, showing you each function
  43. with an example of use.  An award-winning User's Guide is available
  44. with Registration.  POINT FIVE has been used in over 200 colleges in
  45. classrooms as a part of mathematical and science curriculum.
  46.  
  47. SYSTEM REQUIREMENTS:  256K PC with 1 floppy disk drive and CGA.  
  48. POINT FIVE will run faster with hard disk.  Four versions are
  49. available: CGA; CGA with math co-processor; Hercules; Hercules with
  50. math co-processor.  Included here is the CGA version.  A graphics
  51. print driver is included for HP Laserjet.
  52.  
  53. STARTING POINT FIVE:  
  54. Hard drive--         Copy all the files from the floppy disk into a
  55.                      sub-directory (eg POINT5).  Change the directory
  56.                      and call POINT FIVE:
  57.                          MD POINT5
  58.                          COPY A:*.* POINT5
  59.                          CD POINT5      (this is required)
  60.                          PF
  61. Floppy drive only--  Place the floppy disk with POINT FIVE in drive A
  62.                      and at the prompt type PF and press Enter.
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. PRINTING GRAPHS WITH POINT FIVE:
  72. To print POINT FIVE graphs on an Epson or IBM Graphics printer (or
  73. compatible) you must execute GRAPHICS.COM before entering POINT FIVE. 
  74. Normally you would do this by placing GRAPHICS.COM either in your
  75. AUTOEXEC.BAT or your PF.BAT that calls POINT FIVE.  We have included
  76. a graphics printer driver (HPLCGA.COM) for the HP Laser printer to use
  77. in place of GRAPHICS.COM.  Note p. 105 of "Your Guide to POINT FIVE".
  78.  
  79. INCREASING MEMORY:
  80. POINT FIVE as shipped runs in 256K.  If you want to increase the
  81. memory for data, run PFSETUP, and respond to the prompts.  If you have
  82. 640K (maximum usable), respond to the prompt with 340K because some
  83. memory is required by DOS.
  84.  
  85. EXAMPLES OF USE:
  86. -----------------------------------------------------------------
  87. 3*4+(1234-978)/56       ;displays the result 16.57
  88. 5.25^3                  ;displays the result 144.70
  89. The operators are +,-,/,*,^.    ; denotes beginning of a comment.
  90. -----------------------------------------------------------------
  91. INDEX(10)               ;sets up sequence of numbers: 1,2,..,10
  92. income=INDEX(10)*10000  ;set up a vector 10000,20000,...,100000
  93. tax_rate=.15            ;set up a scalar of .15
  94. tax=tax_rate*income     ;stores results in tax: 1500,3000,...,15000
  95. tax                     ;displays results in Output Window (OW)
  96. BARGRAPH(tax)           ;shows a graph of the variable
  97. -----------------------------------------------------------------
  98. plan=AMORTIZE(1000,.10,5,1)  ;shows amortization plan for 1000,
  99.                               10% interest, 5 years, 1 paymt/year.
  100. plan     ;displays result: the 1st two columns are the part of payment
  101.          ;for interest and principal, the last column is remaining    
  102.          ;balance.
  103.              1000.00   1637.97    8362.03
  104.               836.20   1801.77    6560.25
  105.               656.03   1981.95    4578.30
  106.               457.83   2180.14    2398.16
  107.               239.82   2398.16       0.00
  108. BARGRAPH(plan)       ;displays result in bar graph
  109. plan[#,1]+plan[#,2]  ;adds column 1 of plan to column 2 of plan
  110.                       showing that annual payments are equal.
  111.  
  112. This latter example shows you how to use subscripts [..,..] to operate
  113. on a cell or a row or a column of a variable.  The # tells POINT FIVE
  114. to use all the rows (or columns) of the variable.
  115. -----------------------------------------------------------------
  116. Create the following variables with the Data Editor:
  117.   gallons    that contains the gallons in your last 10 fillups 
  118.   miles      that contains the miles traveled on each fillup
  119.  
  120. Return to the Scratchpad and type in the following statements:
  121.   miles/gallons         ;shows the miles per gallon each fillup
  122.   mpg=miles/gallons     ;save result in mpg
  123.   SCATPLOT(miles,mpg)   ;plots mpg (y-axis) vs miles (x-axis)
  124.   MEAN(miles/gallons)   ;shows the average for the 10 fillups.
  125.   x=index(10)           ;set up x-axis value
  126.   linegraph(x,gallons,mpg)  ;compares gallons and mpg against x
  127. -----------------------------------------------------------------
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137. USING POINT FIVE:
  138. After executing PF (the call to POINT FIVE), you see the Main Menu of
  139. POINT FIVE.  
  140.  
  141. Move the cursor to "Creating a New Workspace" and press Enter.  Now
  142. you will see the Scratchpad screen.  
  143.  
  144. Type in Example 1 above and you will see the result displayed.
  145.  
  146. Press F1 to see the Help system.  Type HELP and you will see the Help
  147. help screen.  After reading that screen, move the cursor to "General
  148. Help" and press Enter.  By moving the cursor to any of the entries,
  149. you can browse the Help system for POINT FIVE.  To exit the Help, just
  150. press Enter on "Back to Work".  Later to reenter the General Help,
  151. just press F1 and type GENERAL at the prompt.
  152.  
  153. Press F2 to see the Data Editor.  Respond to the prompt with A (to
  154. name the variable A), then Y (to create it), then 5 (for five rows),
  155. then 3 (for 3 columns).  You will see a matrix of 5 rows and 3 columns
  156. filled with ?.  In POINT FIVE these ? denote "missing", meaning that
  157. each cell with ? does not yet have a number defined.  Type in some
  158. numbers and press Enter; the cursor will move to the next cell; repeat
  159. the process until you have filled all but one cell.  You can use Tab
  160. and ShiftTab to move between cells if you want to change a value.  
  161. Press Esc to exit from the Data Editor.  
  162.  
  163. Now type A in the Scratchpad (and press Enter) and you will see A
  164. displayed in the Output Window (OW).  Type A*5 in the Scratchpad and
  165. look at the result in the OW.  Notice that the ? is retained; any
  166. number times ? is ?.  Now type BARGRAPH(A).  Notice that when the
  167. graph is displayed, the last set has only 2 bars; this is because the
  168. ? is not graphed.  Press any key to return to the Scratchpad from the
  169. graph.
  170.  
  171. Experiment with POINT FIVE by trying the above examples.  Try some of
  172. your own.  Use the Data Editor to modify data.  Try some of the other
  173. graph types.  To see the help on graphs, press F1 and type GRAPH.
  174.  
  175. Pressing ESC will exit from any prompt without taking action.
  176.  
  177. Exit POINT FIVE by pressing F3 and responding to the prompt with a
  178. name for the workspace, or by pressing ShiftF3 which exits without
  179. saving the workspace.
  180.  
  181. This is all you need to know to use POINT FIVE as a graphing desk
  182. calculator.  From this point on, you can use the Help system to expand
  183. your knowledge about the capabilities of the system.
  184.  
  185. A last important point.  You cannot break the system.  So try things. 
  186. Experiment.  This is the way to learn the power of POINT FIVE.  
  187.  
  188. MAKING A BAT FILE FOR POINT FIVE:
  189. You may want to make a BAT file to call POINT FIVE from the POINT5
  190. directory.  To do so, use a word processor to make this file --
  191.   CD \POINT5
  192.   GRAPHICS.COM     (or replace with HPLCGA.COM)
  193.   PF
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203. COMMERCIAL:  POINT FIVE was our initial attempt at an easy to use
  204. supercalculator.  It was priced at $295 for an individual copy, but
  205. was primarily marketed to universities through site licenses as a
  206. curriculum development tool.  While POINT FIVE is very powerful, our
  207. users requested many features to make it even more powerful.  In 1990,
  208. we released the follow-on product, PC:SOLVE, which sells for $495,
  209. with optional libraries at $100 each.  To introduce people to this
  210. powerful technology, we are making POINT FIVE available as Shareware. 
  211.  
  212. While, with its comprehensive Help system, you can use POINT FIVE
  213. without any additional documentation, we highly recommend registering
  214. to get the award winning User's Guide.
  215.  
  216. REGISTRATION INFORMATION:
  217.  
  218. The non-commercial single-user registration fee for POINT FIVE is
  219. $25.00 US (and this includes shipping ground UPS).  For information
  220. about the commercial and multisystem site fee for POINT FIVE, contact
  221. Pacific Crest Software at the above address.
  222.  
  223. The copy you have is the most up-to-date copy, so no disk will be
  224. shipped with registration; only the User's Guide will be shipped to
  225. registrants.  Two additional options are available.  
  226.  
  227. -    The Shareware product supports only CGA.  If you wish Hercules
  228.      support for better graphic resolution, please add $10 for the
  229.      cost of disk reproduction and handling.
  230.  
  231. -    If you find POINT FIVE useful for modeling or data analysis and
  232.      you have a 80x87 in your PC, you may want to purchase the math
  233.      co-processor version for $25; this dramatically improves the
  234.      performance of POINT FIVE.  (No additional charge for Hercules.)
  235.  
  236. Registering will also bring you literature about PC:SOLVE and our
  237. special upgrade price for POINT FIVE shareware users.
  238.  
  239. To register just call us at [503] 754-1067 (alternate:[408] 268-3758)
  240. with your VISA number or send a check for $25 (or $50 to get the math
  241. co-processor version) to:
  242.       POINT FIVE Offer 
  243.       Pacific Crest Software 
  244.       887 NW Grant Ave 
  245.       Corvallis, OR 97330.  
  246.  
  247. We normally ship 5.25" 360K diskettes, but will furnish 3.5" 720K
  248. media upon request.  Customers outside of the United States and Canada
  249. should add $5.00 for airmail shipping.  We can accept VISA charges. 
  250.  
  251. Please indicate the product(s) you are ordering 
  252. -    Registration only                       $25.00
  253. -    Hercules                        plus    $10.00
  254. -    Co-processor version        or  plus    $25.00
  255. and if you have a requirement for 3.5" media.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269. DISTRIBUTION NOTICE 
  270.  
  271. This is "user-supported" software. You are hereby granted a license
  272. by Pacific Crest Software to distribute this evaluation copy of POINT
  273. FIVE and its documentation, subject to the following conditions: 
  274.  
  275.  1.  POINT FIVE may be distributed freely without charge in evaluation
  276.      form only. 
  277.  
  278.  2.  POINT FIVE may not be sold, licensed, or a fee charged for its
  279.      use. If a fee is charged in connection with POINT FIVE, it must
  280.      cover the cost of copying or dissemination only.  Such charges
  281.      must be clearly identified as such by the originating party. 
  282.      Under no circumstances may the purchaser be given the impression
  283.      that he is buying POINT FIVE itself. 
  284.  
  285.  3.  POINT FIVE must be presented as a complete unit, including this
  286.      documentation.  Neither POINT FIVE nor its documentation may be
  287.      amended or altered in any way. 
  288.  
  289.  4.  By granting you the right to distribute the evaluation form of
  290.      POINT FIVE, you do not become the owner of POINT FIVE in any
  291.      form. 
  292.  
  293. Any other use, distribution or representation of POINT FIVE is
  294. expressly forbidden without the written consent of Pacific Crest
  295. Software. 
  296.  
  297. POINT FIVE, its HELP system, and the manual "Your Guide To POINT FIVE"
  298. are fully copyright protected.
  299.