Changeset 896 in Sophya for trunk/SophyaLib/NTools/fftpserver.cc


Ignore:
Timestamp:
Apr 12, 2000, 7:50:34 PM (25 years ago)
Author:
ansari
Message:

Documentation- namespace, utils.cc mis ds SysTools - Reza 12/4/2000

File:
1 edited

Legend:

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

    r805 r896  
    55
    66
    7 /*! \class FFTPackServer
    8  \brief An FFT server based on fftpack
    9 
     7/*!
     8\class SOPHYA::FFTPackServer
    109A class that calculates Fourier transforms forwards and backwards.
    1110
     
    1615Otherwise, the output is in the fftpack format.
    1716
    18 Complex input must be entered using the <complex> template.  Otherwise,
    19 all input is assumed to be real.
    2017
    2118Due to the way that fftpack manages
     
    2623*/
    2724
    28 /*! \fn virtual void FFTServer::fftf(int l, r_4* inout)
     25/* \fn virtual void FFTServer::fftf(int l, r_4* inout)
    2926  \param l length of array
    3027  \param inout input array /output forward FFT (original array destroyed)
     
    3431  \param inout input array /output backward FFT (original array destroyed)
    3532*/
    36 /*! \fn virtual void FFTServer::fftf(int l, r_8* inout)
     33/* \fn virtual void FFTServer::fftf(int l, r_8* inout)
    3734  \param l length of array
    3835  \param inout input array /output forward FFT (original array destroyed)
    3936  \param inout input/output array (original array destroyed)
    4037*/
    41 /*! \fn virtual void FFTServer::fftb(int l, r_8* inout)
     38/* \fn virtual void FFTServer::fftb(int l, r_8* inout)
    4239  \param l length of array
    4340  \param inout input array /output backward FFT(original array destroyed)
    4441*/
    45 /*!\fn  virtual void FFTServer::fftf(int l, complex<r_4>* inout)
     42/*\fn  virtual void FFTServer::fftf(int l, complex<r_4>* inout)
    4643  \param l length of array
    4744  \param inout input array /output forward FFT (original array destroyed)
    4845*/
    49 /*! \fn virtual void FFTServer::fftb(int l, complex<r_4>* inout)
     46/* \fn virtual void FFTServer::fftb(int l, complex<r_4>* inout)
    5047  \param l length of array
    5148  \param inout input array /output backward FFT (original array destroyed)
    5249*/
    53 /*! \fn virtual void FFTServer::fftf(int l, complex<r_8>* inout)
     50/* \fn virtual void FFTServer::fftf(int l, complex<r_8>* inout)
    5451  \param l length of array
    5552  \param inout input array /output forward FFT (original array destroyed)
    5653*/
    57 /*! \fn virtual void FFTServer::fftb(int l, complex<r_8>* inout)
     54/* \fn virtual void FFTServer::fftb(int l, complex<r_8>* inout)
    5855  \param l length of array
    5956  \param inout input array /output backward FFT(original array destroyed)
    6057*/
    61 /*!\fn  virtual void FFTServer::fftf(Vector& in, Vector& out)
     58/*\fn  virtual void FFTServer::fftf(Vector& in, Vector& out)
    6259  \param in input array
    6360  \param out forward FFT
    6461*/
    65 /*! \fn virtual void FFTServer::fftb(Vector& in, Vector& out)
     62/* \fn virtual void FFTServer::fftb(Vector& in, Vector& out)
    6663  \param in input array
    6764  \param out backward FFT
Note: See TracChangeset for help on using the changeset viewer.