home *** CD-ROM | disk | FTP | other *** search
-
- void MatPrint(float *m1,int m,int n,char *matname);
-
- void MatProd(float *m1,float *m2,int l,int m,
- int n, float *m3);
-
- void MatScalarProd(float *m1, float sval,int numrow,
- int numcol, float *m2);
-
- void MatAdd(float *m1, float *m2,int numrow,
- int numcol,float *m3);
-
- void MatTranspose(float *m1,int numrow,int numcol,float *m2);
-
- float MatDeter(float *m1, int numrow);
-
- void MatInvert(float *matdata, int numcol,float *det,
- float *invary);
-
- void NormalizeEigenVectors(float *a,int n);
-
- void JacobiRotation(float *m, int p, int q,
- float *mp, float *mq, float *v,
- int n );
-
- void CyclicJacobi(float *a,int n,float *eigenvalues,
- float *v,int *count,char *success);
-
- void CMatProd(struct complext *m1,struct complext *m2,int l,
- int m,int n,struct complext *m3);
-
- void CMatScalarProd(struct complext *m1,struct complext sval,int numrow,
- int numcol,struct complext *m2);
-
- void CMatAdd(struct complext *m1,struct complext *m2,
- int numrow,int numcol,struct complext *m3);
-
- void CMatTranspose(struct complext *m1,int numrow,int numcol,
- struct complext *m2 );
-
- void CMatInvert(struct complext *matdata,int numcol,float *det,
- struct complext *invary);
-
- void CMatPrint(struct complext *m1,int m,int n,char *matname);
-
-
-