Ignore:
Timestamp:
Jul 3, 2006, 1:04:51 PM (19 years ago)
Author:
ansari
Message:

Suppression const des arguments FFTForward/Backward + adaptation de Toeplitz, cmv+Reza 03/07/2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/toeplitzMatrix.cc

    r2908 r3002  
    2828Toeplitz::Toeplitz() : hermitian_(false)
    2929  {
    30     fftIntfPtr_=new FFTPackServer;
     30    fftIntfPtr_=new FFTPackServer(true);  // true -> on ne surecrit pas les input
    3131    fftIntfPtr_->setNormalize(false);
    3232  }
     
    3636Toeplitz::Toeplitz(const TVector<complex<double> >& firstCol) : hermitian_(false)
    3737  {
    38     fftIntfPtr_=new FFTPackServer;
     38    fftIntfPtr_=new FFTPackServer(true); // true -> on ne surecrit pas les input
    3939    fftIntfPtr_->setNormalize(false);
    4040    setMatrix(firstCol);
Note: See TracChangeset for help on using the changeset viewer.