def plot(self): import pylab as pl pl.plot(self.dim, self.signal) pl.xlabel(self.dim_units) pl.ylabel(self.signal_units) pl.grid(True) pl.show()