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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = toeplitz.cpp
  3. //
  4. //#include <stdlib.h>
  5. #include "toeplitz.h"
  6. ToeplitzMatrix::ToeplitzMatrix( void )
  7.   {
  8.   return;
  9.   }
  10. double* ToeplitzMatrix::GetCol(int col_indx)
  11.   {
  12.   // right now this only returns column 1
  13.   int indx;
  14.   double *col_vect, *src_ptr, *dest_ptr;
  15.   col_vect = new double[Num_Rows];
  16.   dest_ptr = col_vect;
  17.   src_ptr = Herm_Toep_Col_1;
  18.   for(indx=0; indx<Num_Rows; indx++)
  19.     {
  20.     *dest_ptr = *src_ptr;
  21.     dest_ptr++;
  22.     src_ptr++;
  23.     }
  24.   return(col_vect);
  25.   }