home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 52 / af052sub.adf / FhSpread.lha / FHSpread / FHS.DOC < prev    next >
Text File  |  1993-07-16  |  4KB  |  105 lines

  1.                 FHSPREAD DOCUMENTATION:
  2.  
  3.         This program is publicdomain. You can spread this program
  4.         as long as you don't ask more money for it than the price
  5.         of a floppy. This document must also always be included.
  6.  
  7.         This program is written in GFABASIC and compiled with it's
  8.         GFA-compiler.
  9.         The reason whi I wrote this program is, that I just needed
  10.         a good spreadsheet.
  11.  
  12.  
  13.         If you've found some bugs during using it, please let me
  14.         know! And send youre bug-report to:
  15.  
  16.         Frank Hartog
  17.         Indischestraat 45
  18.         2022 VP  Haarlem
  19.         The Netherlands
  20.  
  21.         If you want the latest update, send me an envelope which
  22.         must include the next two (or three) things:
  23.         -Another envelope with youre adress and enough stamps.
  24.         -An EMPTY floppy.
  25.         (- And maybe a little fee, please? )
  26.         Than I will send you the latest update of FHSPREAD as soon
  27.         as possible.
  28.         If you have included a fee, i will let you know when a new
  29.         version is available.
  30.  
  31.         !! If you want to send FHS-graphic to a printer, you have to make
  32.         sure that the programm FHHC is in the same directory as FHS!!
  33.  
  34.         At the moment I am trying to make a manual for this program.
  35.         So for now I shall only include some major functions:
  36.  
  37.         SIN(val)      = Calculates the sinus in radials.
  38.         ASIN(val)     = Calculates the arcsinus in radials.
  39.         COS(val)      = Calculates the cosinus in radials.
  40.         ACOS(val)     = Calculates the arccosinus in radials.
  41.         TAN(val)      = Calculates the tangent in radials.
  42.         ATN(val)      = Calculates the arctangent in radials.
  43.  
  44.         RAD(val)      = Changes degrees to radials.
  45.         DEG(val)      = Changes radials to radials.
  46.  
  47.         ROUND(val,n)  = Will round a numeric value to n digits.
  48.         MOD(val,n)    = Will give the modulo n of val.
  49.  
  50.         RANDOM(val)   = Wil generate an random value between zero and
  51.                         val.
  52.         EXP(val)      = Calculates e^val.
  53.         LOG(val)      = Calculates the naturallogaritme of val.
  54.         LOG10(val)    = Calculates the (LOG(val)/LOG(10)).
  55.  
  56.         FACT(val)     = Calculates val!
  57.         VARIAT(val,n) = Calculates val!/(val-n)!
  58.         COMBIN(val,n) = Calculates val!/((val-n)!*n!)
  59.  
  60.  
  61.         AVG(list)     = Will calculate the average of al values of the list.
  62.         'example  (AVG(A1..B3))'
  63.         SUM(list)     = Will sum al values of the list.
  64.         'example  (SUM(A1..B3))'
  65.         COUNT(list)   = Will count the number of used cells in the list.
  66.         'example  (COUNT(A1..B3))'
  67.  
  68.         There are also three constante values:
  69.  
  70.         PI            = Will return the value of 3.14....etc.
  71.         { FALSE         = Will return a '0'.
  72.           TRUE          = Will return a '-1'.} these will be used in
  73.         future versions.
  74.  
  75.  
  76.         If you want to put a calculation in a cel, you must start with
  77.         typing a '('.
  78.         If you want to put a numeric value in a cel, you only have to enter
  79.         the numeric value.
  80.  
  81.         !!!!  The program uses priorities between +,- and *,/,^. So you
  82.         may have to use the ()-things.
  83.  
  84.         If you want to put some text in a cel, just start typing it.
  85.  
  86.         You can leave a cel by hitting 'ENTER' or by pressing one of
  87.         the arrow keys or 'click' on another cel with the mouse.
  88.  
  89.         For almost every menu-item there is an keyboard equivalent,
  90.         what they are you can see if you select a menu-item with your
  91.         mouse.
  92.  
  93.         There are three variations:
  94.  
  95.         Amiga sign + character means:  right amiga button + character
  96.         A + character1 - character2   means:  First press both
  97.         Alt + character1  then press character2.
  98.         C + character1 - character2   means:  First press both
  99.         Ctrl + character1  then press character2.
  100.  
  101.  
  102.         Use F10 (function key nr. 10) to recalc the spreadsheet.
  103.         Use F2 (function key nr. 2) change a cel. You can also use this
  104.         on an empty cel.
  105.