Changeset 3002 in Sophya for trunk/SophyaLib/NTools/toeplitzMatrix.cc
- Timestamp:
- Jul 3, 2006, 1:04:51 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/toeplitzMatrix.cc
r2908 r3002 28 28 Toeplitz::Toeplitz() : hermitian_(false) 29 29 { 30 fftIntfPtr_=new FFTPackServer ;30 fftIntfPtr_=new FFTPackServer(true); // true -> on ne surecrit pas les input 31 31 fftIntfPtr_->setNormalize(false); 32 32 } … … 36 36 Toeplitz::Toeplitz(const TVector<complex<double> >& firstCol) : hermitian_(false) 37 37 { 38 fftIntfPtr_=new FFTPackServer ;38 fftIntfPtr_=new FFTPackServer(true); // true -> on ne surecrit pas les input 39 39 fftIntfPtr_->setNormalize(false); 40 40 setMatrix(firstCol);
Note:
See TracChangeset
for help on using the changeset viewer.