home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff267.lzh / Matlab / ReadMe < prev    next >
Text File  |  1989-10-31  |  2KB  |  75 lines

  1. MATLAB stands for MATrix LABoratory.  It is a FORTRAN package developed by 
  2. Argonne National Laboratories for in-house use.  It provides comprehensive
  3. vector and tensor operations in a package which may be programmed, either
  4. through a macro language or through execution of script files.
  5.  
  6. Matlab is reentrant and recursive.  Functions supported include (but not 
  7. by any means limited to) sin, cos, tan, arcfunctions, upper triangular,
  8. lower triangular, determinants, matrix multiplication, identity, hilbert 
  9. matrices, eigenvalues and eigenvectors, matrix roots and products, inversion
  10. and so on and so forth.
  11.  
  12. The file available on the bulletin board as Matlab.arc contains an Amiga-ized
  13. executable copy of MATLAB and the online help file, as well as this intro.
  14.  
  15. If you want the source code (over 300K) and a manual, or if your bulletin 
  16. board only has this message and not the package, send $5.00 and a 3.5" 
  17. disk to:
  18.  
  19.                            Jim Locker
  20.                            4443 N. Hyland Ave.
  21.                            Dayton, Oh 45424
  22.  
  23. The package is public domain, but of course postage and reproduction cost
  24. money.  Believe me, this package is a bargain at the price.  Please feel free
  25. to distribute the package.
  26.  
  27. The source was taken off a VAX 11/780.  It ran without modification (except the
  28. file handler and some minor error handling) on an Amiga 1000 using ABSoft 
  29. Fortran v2.2.  It will run in 512K environment.  I have seen it on IBM 
  30. mainframes and IBM PCs.  
  31.  
  32. ********************** A Sample Session ***********************************
  33.  
  34. For this session the <> character is the MATLAB prompt.
  35.  
  36.  <> a=<1 2 3;5 4 6;7 8 9>            <---  you enter this
  37.  
  38.  A     =                             <---  MATLAB response
  39.  
  40.      1.    2.    3.
  41.      5.    4.    6.
  42.      7.    8.    9.
  43.  
  44.  <> b=<5;6;7>                        <--- you enter this
  45.  
  46.  B     =                             <--- MATLAB response
  47.  
  48.      5.
  49.      6.
  50.      7.
  51.  
  52.  <> a*b             <--- you enter "multiply a and b"
  53.  
  54.  ANS   =            <--- MATLAB response
  55.  
  56.     38.
  57.     91.
  58.    146.
  59.  
  60.  <> b*a             <---you enter "multiply b and a"
  61.     /--ERROR                         <--- MATLAB response
  62.  INCOMPATIBLE FOR MULTIPLICATION
  63.  
  64.  <> det(a)         <--- Take the determinant of a
  65.  
  66.  ANS   =           <---MATLAB response
  67.  
  68.     18.
  69.  
  70.  <> exit           <--- you quit MATLAB
  71.  
  72.  total flops        34
  73.  
  74.  ADIOS
  75.