Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3754
| From | Karl Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: How can I animate a point? |
| Date | 2017-09-17 14:42 +0200 |
| Organization | solani.org |
| Message-ID | <oplqjf$qln$1@solani.org> (permalink) |
| References | <db547cc4-d67e-4a54-bf93-cef130044a78@googlegroups.com> |
Am 16.09.2017 um 19:40 schrieb rafitafromista@gmail.com:
> I have a file "data.txt" with 3 columns, the first columns represent the x value of the point, the sencond the y value, and the third the time in seconds.
>
> I heard that GNUplot can aminate the point, but what I have to write?
>
No really.
Gnuplot can output an animated gif:
----------
stat "data.txt"
set term push
set term gif animate
set out "animation.gif"
do for [i=1:STATS_records] {plot "data.txt" ev ::i:i us 1:2}
set out
set term pop
------------
but taking the time data into account is not directly possible.
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Next in thread | Find similar
How can I animate a point? rafitafromista@gmail.com - 2017-09-16 10:40 -0700
Re: How can I animate a point? Karl Ratzsch <mail.kfr@gmx.net> - 2017-09-17 14:42 +0200
Re: How can I animate a point? Rafael <rafitafromista@gmail.com> - 2017-09-20 11:50 -0700
csiph-web