home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / D-G / GemsII / viewcorr / matrix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-16  |  149 b   |  9 lines  |  [TEXT/MPS ]

  1. /* matrix.h
  2.  *    The type and externs for matrix routines.
  3.  */
  4.  
  5. typedef double ** Matrix;
  6.  
  7. extern double InvertMatrix();
  8. extern Matrix NewMatrix();
  9.