Path: csiph.com!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.datemas.de!weretis.net!feeder1.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl-Friedrich Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Command every Date: Sat, 9 Jan 2016 11:08:17 +0100 Organization: solani.org Lines: 20 Message-ID: References: <23846d17-ac98-4ac7-bb47-e82aecc07247@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1452334097 17347 eJwNyskBwCAIBMCWQC4pBzdu/yWYeU9YaqI8Iz0YTK/dBUi12aVagL7OIdhrpvPPo/KBkN5xHxoqEXM= (9 Jan 2016 10:08:17 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Sat, 9 Jan 2016 10:08:17 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 X-User-ID: eJwFwYERADAEBLCVuK8v41DsP0ITA5XvHhqPrS1vRoZ2Aj7tMZhCXOGWSIN4bM2yKBOd8Q8fRxE3 In-Reply-To: <23846d17-ac98-4ac7-bb47-e82aecc07247@googlegroups.com> Cancel-Lock: sha1:/bVp+bYFxKDL4XX8TScnrejl//U= X-NNTP-Posting-Host: eJwFwYEBwCAIA7CXLLTFnSNz/H/CEqXht2iZGs0m1e14ooBCL4QyCOiOcG76Yx839yw05wf1MhAn Xref: csiph.com comp.graphics.apps.gnuplot:3155 Am 09.01.2016 um 09:26 schrieb aelurus.stockage@gmail.com: > Hello all, > with gnuplot i draw a fonction T(x) = (7+345*log10(8*(10*(x)/60)+1)) from a data file with others curves. > > i use TcSimulation using 1:(T($1)) lw 3 title "ISO",\ in my plot commande. > It works well. > I would like to start this draw 80 secondes after, i mean the ISO curve should start after this others curves. > > So i use TcSimulation using 1:(T($1)) every ::60 lw 3 title "ISO",\ > My probleme it that the still start at time 0. > I would like a to move the curve in the horizontal way not vertical start. ("TcSimulation"?) plot datafile using ($1+60):(T($1)) or plot datafile using ($1+60):(T($1+60)) ?