Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3754
| Path | csiph.com!weretis.net!feeder4.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail |
|---|---|
| From | Karl Ratzsch <mail.kfr@gmx.net> |
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: How can I animate a point? |
| Date | Sun, 17 Sep 2017 14:42:20 +0200 |
| Organization | solani.org |
| Lines | 24 |
| Message-ID | <oplqjf$qln$1@solani.org> (permalink) |
| References | <db547cc4-d67e-4a54-bf93-cef130044a78@googlegroups.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=utf-8 |
| Content-Transfer-Encoding | 7bit |
| X-Trace | solani.org 1505652143 27319 eJwFwYEBwCAIA7CXHNAK50jF/09YAudH7SAYeHjF7rGL5Uq/au7COtDcs6wzzWKUk3qUs/ADJ90RbA== (17 Sep 2017 12:42:23 GMT) |
| X-Complaints-To | abuse@news.solani.org |
| NNTP-Posting-Date | Sun, 17 Sep 2017 12:42:23 +0000 (UTC) |
| User-Agent | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
| In-Reply-To | <db547cc4-d67e-4a54-bf93-cef130044a78@googlegroups.com> |
| Content-Language | de-DE-1901 |
| X-User-ID | eJwFwQkRADAIAzBLwFoeObAd/iUs4XH1G3A6uNwYme4aegBhtBJ2dKpcZFPnle2+V4dQR34P1xB0 |
| Cancel-Lock | sha1:u4NK8B03tlqiw3HSOHFZdpsNjHc= |
| X-NNTP-Posting-Host | eJwFwYERACEIA7CV6EOrjuOB3X+ET5iCepWoounXb93enNHgxsd+5hlUgZGykOGGtMNHGT8ssBDN |
| Xref | csiph.com comp.graphics.apps.gnuplot:3754 |
Show key headers only | View raw
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