Scipy.signal, spectrogram??

Peter Otten __peter__ at web.de
Fri Aug 19 05:29:37 EDT 2016


Ambroise Baudot wrote:

http://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.spectrogram.html
> In Python (v. 3.4), scipy.signal.spectrogram doesn't exist?
> Can you help me to find this function please?

It's the scipy version that matters. The page you link to says

"""
New in version 0.16.0.
"""

so you need at least this version. You can find out your current version 
with

>>> import scipy
>>> scipy.__version__
'0.13.3'

Looks like I don't have the function either...




More information about the Python-list mailing list