Changeset 0c83de6


Ignore:
Timestamp:
Jul 27, 2012, 6:36:58 PM (12 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
dea34a1
Parents:
b1c2acc
Message:

demo_tss.py: add plotting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • interfaces/python/demo_tss.py

    rb1c2acc r0c83de6  
    3434    g(transients, read)               # write transients to output
    3535    h(steadstate, read)               # write steady states to output
     36
     37  del f, g, h                         # finish writing the files now
     38
     39  from demo_spectrogram import get_spectrogram
     40  from pylab import subplot, show
     41  subplot(311)
     42  get_spectrogram(sys.argv[1])
     43  subplot(312)
     44  get_spectrogram(sys.argv[2])
     45  subplot(313)
     46  get_spectrogram(sys.argv[3])
     47  show()
Note: See TracChangeset for help on using the changeset viewer.