Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3154 > unrolled thread
| Started by | aelurus.stockage@gmail.com |
|---|---|
| First post | 2016-01-09 00:26 -0800 |
| Last post | 2016-01-09 11:08 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.graphics.apps.gnuplot
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
| From | aelurus.stockage@gmail.com |
|---|---|
| Date | 2016-01-09 00:26 -0800 |
| Subject | Command every |
| Message-ID | <23846d17-ac98-4ac7-bb47-e82aecc07247@googlegroups.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. I hope you will understand me.
[toc] | [next] | [standalone]
| From | Karl-Friedrich Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Date | 2016-01-09 11:08 +0100 |
| Message-ID | <n6qm6h$gu3$1@solani.org> |
| In reply to | #3154 |
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))
?
[toc] | [prev] | [standalone]
Back to top | Article view | comp.graphics.apps.gnuplot
csiph-web