toeplitz.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = toeplitz.h
  3. //
  4. #ifndef _TOEPLITZ_H_
  5. #define _TOEPLITZ_H_
  6. //#include "complex.h"
  7. #include "matrix.h"
  8. class ToeplitzMatrix : public Matrix
  9. {
  10. public:
  11.   ToeplitzMatrix( );
  12.   double* GetCol(int col_indx);
  13. protected:
  14.   double *Herm_Toep_Col_1;
  15. };
  16. #endif