This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Plot data received over a ZeroMQ port in real time using matplotlib. | |
Notes | |
----- | |
This appears to segfault when run using the WxAgg backend. | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from numpy import linspace, cos, pi, absolute | |
from numpy.fft import fft, fftfreq, fftshift | |
import matplotlib.pyplot as plt | |
# Sampling rate | |
fs = 64 # Hz | |
# Time is from 0 to 1 seconds, but leave off the endpoint, so | |
# that 1.0 seconds is the first sample of the *next* chunk | |
length = 1 # second |
NewerOlder