ref: 88fee8f77333c129db4055b5da0f446586d5acfc
dir: /python/demos/demo_miditofreq.py/
#! /usr/bin/env python from aubio import miditofreq from numpy import arange upsampling = 100. midi = arange(-10, 148 * upsampling) midi /= upsampling freq = miditofreq(midi) from matplotlib import pyplot as plt ax = plt.axes() ax.semilogy(midi, freq, '.') ax.set_xlabel('midi note') ax.set_ylabel('frequency (Hz)') plt.show()