home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / MATMATH.H < prev    next >
Encoding:
Text File  |  1988-02-18  |  1.4 KB  |  48 lines

  1.  
  2. void MatPrint(float *m1,int m,int n,char *matname);
  3.  
  4. void MatProd(float *m1,float *m2,int l,int m,
  5.          int n, float *m3);
  6.  
  7. void MatScalarProd(float *m1, float sval,int numrow,
  8.                int numcol, float *m2);
  9.  
  10. void MatAdd(float *m1, float *m2,int numrow,
  11.             int numcol,float *m3);
  12.  
  13. void MatTranspose(float *m1,int numrow,int numcol,float *m2);
  14.  
  15. float MatDeter(float *m1, int numrow);
  16.  
  17. void MatInvert(float *matdata, int numcol,float *det,
  18.            float *invary);
  19.  
  20. void NormalizeEigenVectors(float *a,int n);
  21.  
  22. void JacobiRotation(float *m, int p, int q,
  23.                float *mp, float *mq, float *v,
  24.            int n );
  25.  
  26. void CyclicJacobi(float *a,int n,float *eigenvalues,
  27.                   float *v,int *count,char *success);
  28.  
  29. void CMatProd(struct complext *m1,struct complext *m2,int l,
  30.               int m,int n,struct complext *m3);
  31.  
  32. void CMatScalarProd(struct complext *m1,struct complext sval,int numrow,
  33.                     int numcol,struct complext *m2);
  34.  
  35. void CMatAdd(struct complext *m1,struct complext *m2,
  36.              int numrow,int numcol,struct complext *m3);
  37.  
  38. void CMatTranspose(struct complext *m1,int numrow,int numcol,
  39.                    struct complext *m2 );
  40.  
  41. void CMatInvert(struct complext *matdata,int numcol,float *det,
  42.                 struct complext *invary);
  43.  
  44. void CMatPrint(struct complext *m1,int m,int n,char *matname);
  45.  
  46.  
  47.  
  48.