pydsm.ft.idtft_hermitian¶
-
pydsm.ft.idtft_hermitian(Ff, tt, fs=1, **options)¶ Compute the inverse discrete time Fourier transform (IDTFT) for a hermitian function of frequency.
Since the input function is hermitian, i.e. F(-f)=conjugate(F(f)), it is sufficient to look at a single side of it. Furthermore, the IDTFT turns out to be a real vector.
- Parameters
- Ffcallable
the function of frequency to compute the IDTFT from. The values for a negative argument are not used.
- 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.