[matplotlib-devel] pylib dynamic plot.

2007-11-24 Thread hjc520070
I just want to a dynamic plot with a line show in a plot. The line changes every second when it gets the different data(xdata(),ydata()) from list[i]. list[1]=([1,2],[3,5]) list[2]=([1,2],[3,5],[5,4]) list[3]=([1,2],[3,5],[5,4],[7,6]) list[4]=([1,2],[3,5],[5,4],[7,6],[9,7]).. for example, when

Re: [matplotlib-devel] pylib dynamic plot.

2007-11-24 Thread Darren Dale
On Thursday 22 November 2007 11:55:04 pm hjc520070 wrote: > I just want to a dynamic plot with a line show in a plot. > The line changes every second when it gets the different > data(xdata(),ydata()) from list[i]. > list[1]=([1,2],[3,5]) list[2]=([1,2],[3,5],[5,4]) > list[3]=([1,2],[3,5],[5,4],[7,