X-Git-Url: https://git.realraum.at/?p=svn42.git;a=blobdiff_plain;f=dart%2Fplot.py;fp=dart%2Fplot.py;h=0000000000000000000000000000000000000000;hp=d427488a4bde3ad281e5f99cf42bfa2479890062;hb=8e8f26d01ab21db191f62f2732808dcb75e8a74f;hpb=050398149d26f27a0b19971cbcea990574d73a57 diff --git a/dart/plot.py b/dart/plot.py deleted file mode 100755 index d427488..0000000 --- a/dart/plot.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python - -import fileinput -import numpy -import pylab -labels=[]; -for line in fileinput.input(): - (label,foo,datastr)=line.partition(":") - labels.append(label) - data = numpy.array(datastr.split(",")) - pylab.plot(range(len(data)),data,label=label) - pylab.hold(True) - -pylab.legend() -pylab.show() -