X-Received: by 10.129.177.134 with SMTP id p128mr3577722ywh.189.1505933430216; Wed, 20 Sep 2017 11:50:30 -0700 (PDT) X-Received: by 10.36.120.13 with SMTP id p13mr19705itc.2.1505933430098; Wed, 20 Sep 2017 11:50:30 -0700 (PDT) Path: csiph.com!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!b1no789773qtc.1!news-out.google.com!c139ni1627itb.0!nntp.google.com!o200no927987itg.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Wed, 20 Sep 2017 11:50:29 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=79.144.48.60; posting-account=gPMfDgoAAAAbAynR8KpvKpHLZ5epXj8d NNTP-Posting-Host: 79.144.48.60 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2f01e517-7bdf-4928-bd18-329692d007d3@googlegroups.com> Subject: Re: How can I animate a point? From: Rafael Injection-Date: Wed, 20 Sep 2017 18:50:30 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Lines: 29 Xref: csiph.com comp.graphics.apps.gnuplot:3756 El domingo, 17 de septiembre de 2017, 14:42:25 (UTC+2), Karl Ratzsch escri= bi=C3=B3: > Am 16.09.2017 um 19:40 schrieb rafitafromista@gmail.com: > > I have a file "data.txt" with 3 columns, the first columns represent th= e x value of the point, the sencond the y value, and the third the time in = seconds. > >=20 > > I heard that GNUplot can aminate the point, but what I have to write? > >=20 >=20 > No really. >=20 > Gnuplot can output an animated gif: >=20 > ---------- > stat "data.txt" >=20 > set term push > set term gif animate > set out "animation.gif" >=20 > do for [i=3D1:STATS_records] {plot "data.txt" ev ::i:i us 1:2} >=20 > set out > set term pop > ------------ >=20 > but taking the time data into account is not directly possible. Thanks for answering