def hermf(N, order=6, tm=6.0): """ Computes a set of orthogonal Hermite functions for use in computing multi-taper reassigned spectrograms @param N the number of points in the window (must be odd) @param order the maximum order of the set of functions (default 6) @param tm half-time support (default 6) @returns hermite functions (MxN), first derivative of h (MxN), time-multiple of h (MxN) """ return _libtfr.hermf(N, order, tm)
def hermf(N, order=6, tm=6.0): """ Computes a set of orthogonal Hermite functions for use in computing multi-taper reassigned spectrograms N - the number of points in the window (must be odd) order - the maximum order of the set of functions (default 6) tm - half-time support (default 6) Returns: h, Dh, Th h - hermite functions (MxN) Dh - first derivative of h (MxN) Th - time-multiple of h (MxN) """ return _libtfr.hermf(N, order, tm)