home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / monkey.zip / READ.ME < prev   
Text File  |  1988-01-31  |  2KB  |  44 lines

  1.  
  2.                MONKEY  --  The Matrix Manipulator Monkey
  3.                       Version 1.0, January 1988
  4.                            Greg Lindhorst
  5.                         7800 Charger Trail NE
  6.                         Albuquerque, NM 87109
  7.  
  8. Monkey is a Matrix Calculator, which can perform the following operations on
  9. matrices:
  10.  
  11.     * add, multiply, divide, swap, and reduce rows/columns.
  12.     * add, multiply, divide, transpose, and invert matrices.
  13.     * evaluate matrix expressions, involving the above.
  14.     * find the determinant and the vector space for a matrix.
  15.     * store/retrieve matrices from files, with multiple matrices in memory.
  16.  
  17. It also has the following features:
  18.  
  19.     * Fractional Arithmetic:  Rational numbers are stored and manipulated
  20.       as a numerator/denominator pair.  Thus, calculations on these numbers
  21.       are exact.  If the number is too small/large, standard real number
  22.       representations are used (it will use an 80x87 if present).
  23.     * Memory Storage:  Multiple matrices may be loaded into memory at the
  24.       same time, and manipulated at will.  They may also be stored/retrieved
  25.       from files.  
  26.     * Full Help System:  A full help system is provided, on line.
  27.  
  28. This program was written mainly as an aid to a linear algebra course, but it
  29. could be used by anyone who needs to manipulate matrices.
  30.  
  31. After running the program, you will get a prompt.  Type 'help' to see a list
  32. of commands.  Type 'help general' to get a basic feel for the program.
  33. Type 'documentation' to generate a copy of the help system which is suitable
  34. for printing. 
  35.  
  36. The binaries are public domain, and may be distributed freely, so long as
  37. the three files MONKEY.EXE, MONKEY.HLP, and READ.ME are not changed in 
  38. any way.  For information on the source code, type 'help source'.
  39.  
  40. Have fun, and I hope this program is of some use...
  41.  
  42. --- greg, january 31, 1988
  43.  
  44.