ccmatrix.h

Go to the documentation of this file.
00001 #ifndef _cc_matrix_H_
00002 #define _cc_matrix_H_
00003 
00004 
00005 class CMatrix 
00006 {
00007  private: 
00008   int m,n;
00009   char *name;
00010   double *v;
00011 
00012  public:
00013   CMatrix(char *name1,char *job);
00014   void scijob(char *jobname);
00015   CMatrix& plus(CMatrix &B);
00016   void print();
00017   void inv();
00018 
00019 };
00020 
00021 #endif
00022 
00023 

Generated on Sun Mar 4 15:03:45 2007 for Scilab [trunk] by  doxygen 1.5.1