Is there any way to have one gnuplot window, and then from within that window, cycle forward to different plots?
To be a little more clear, say that I wanted to plot sin(x), cos(x), and tan(x) in this way. First, a window would appear with sin(x) on it, then when I hit some key, the same window would then show me cos(x), and then finally, upon the next keystroke, it would show me tan(x).
I've only been able to find information on displaying multiple plots at the same time, on the same window. In my case, my data is per day, and I've got about 300 days to look at.
It would be sort of the same as opening 300 images in an image viewer. You just hit "next" to view the next one. I'm not able to export to images, though, since I need to be able to zoom and inspect each individual plot.
I'm using wxt, and calling gnuplot from a C program with popen(), if that matters.
Anyone have any ideas?