|
From: Micha W. <mw...@gm...> - 2008-02-01 16:28:00
|
Hi, phe...@ao... wrote: > I have many data points of the 2 values [ eccentricity (e) and > semi-major axis (a) ] that change over a certain time. So my > x-y-function is y(x) = e(a). As time evaluates, this curve will > change too. What I want to plot is: an animation that includes all my > data points e&a at different times I dont understand what you want to plot? Do you have different e(a) at different times t, that is: e1(a) at t1 e2(a) at t2 e3(a) at t3? If this is your case and the data looks like: #a e1 e2 e3 e4 ... 0 0 0 0 0 1 1 2 3 4 2 2 4 6 8 ... you could do look into splot. > in the way that I receive an animation of the in time changing curve > e(a). if you want to create several plots of sin(a*x) with increasing a, you could either do plot a=1, plot(a*x); pause -1; plot a=2, plot(a*x); pause -1; ... or you could save each of them into a png file and create an animation from there, or you could use "splot sin(y*x)" > Is such a thing possible with gnuplot. (If yes...how??? :) ) HTH, Micha |