pydsm.ft.idtft¶
-
pydsm.ft.idtft(Ff, tt, fs=1, **options)¶ Compute the inverse discrete time Fourier transform (IDTFT)
- Parameters
- Ffcallable
the function of frequency to compute the IDTFT from
- ttreal or array_like
the time sample (or 1-D vector of) where to compute the IDTFT
- Returns
- xndarray
the inverse discrete time Fourier transform at time values in tt
- Other Parameters
- fsreal, optional
the sample frequency for the output sequence (defaults to 1)
- quad_optsdictionary
Parameters to be passed to the
quadfunction used internally as an integrator. Allowed options areepsabs,epsrel,limit,points. Do not use other options since they could break the integrator in unexpected ways. Defaults can be set by changing the functiondefault_optionsattribute.
See also
scipy.integrate.quadintegrator used internally. For the meaning of the integrator parameters.