""" Copyright (c) 2012, NOVI Consortium, European FP7 NOVI Project Copyright according to BSD License For full text of the license see: ./novi/Software/Monitoring/MonitoringTool/PacketTracking/license.txt @author Ramon Masek, Fraunhofer FOKUS @author Christian Henke, Technical University Berlin @author Carsten Schmoll, Fraunhofer FOKUS @author Julian Vetter, Fraunhofer FOKUS @author Jens Krenzin, Fraunhofer FOKUS @author Michael Gehring, Fraunhofer FOKUS @author Tacio Grespan Santos, Fraunhofer FOKUS @author Fabian Wolff, Fraunhofer FOKUS """ from matplotlib.pyplot import plot, show class DelayPlotter(object): def __init__(self): pass def plotStats(self, x, y): plot(x,y) show()