Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3155
| From | Karl-Friedrich Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: Command every |
| Date | 2016-01-09 11:08 +0100 |
| Organization | solani.org |
| Message-ID | <n6qm6h$gu3$1@solani.org> (permalink) |
| References | <23846d17-ac98-4ac7-bb47-e82aecc07247@googlegroups.com> |
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))
?
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Find similar
Command every aelurus.stockage@gmail.com - 2016-01-09 00:26 -0800 Re: Command every Karl-Friedrich Ratzsch <mail.kfr@gmx.net> - 2016-01-09 11:08 +0100
csiph-web