home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / progrmng / quinta.sit / mat7.q < prev    next >
Encoding:
Text File  |  1990-03-22  |  525 b   |  30 lines  |  [TEXT/QNTA]

  1. ;
  2. ; This is an example of the use of matrix operations in Quinta
  3. ; The following example builds a large matrix (7 by 7) and
  4. ; stores it in a variable 'mx'
  5.  
  6. 237  38  116  42  104  29  51
  7. 290  45  142  51  132  32  65
  8. 112  18  55   20  49   14  24
  9. 253  40  124  45  112  30  55
  10. 106  17  52  19  47  13  23
  11. 257  41  126  46  114  31  56
  12. 224  36  110  40  100  28  49
  13. 7 7 >dim
  14. >mat
  15.  
  16. 'mx' sto
  17.  
  18. ; Now that the matrix is in em, we can try several operations on it
  19.  
  20. em print
  21.  
  22. em det
  23.  
  24. em inv print
  25.  
  26. em trn print
  27.  
  28. em 5 5 >dim rdm det
  29.  
  30.