Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4291
| From | Veek M <veek@dont-use-this.com> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: How do i pipe data to gnuplot/no-fifo and plot the data on the fly |
| Date | 2020-02-18 14:42 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <r2gt49$erb$1@dont-email.me> (permalink) |
| References | <r2a8qe$mvp$1@dont-email.me> |
( seq 1 10 )|gnuplot -p -e 'set xrange [0:100]; set yrange [0:100];
while(1) { plot "<&3" using ($0):1 every ::::3:0; pause 10; replot; }' 3</
dev/stdin
Something like this works but only just.. basically you got to manually
pipe the data using some gnuplot specific syntax not to mention the
redirect to fd in bash
plot "<&3"
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Find similar
How do i pipe data to gnuplot/no-fifo and plot the data on the fly Veek M <veek@dont-use-this.com> - 2020-02-16 02:18 +0000 Re: How do i pipe data to gnuplot/no-fifo and plot the data on the fly Gavin Buxton <gavinbuxton@gmail.com> - 2020-02-16 05:59 -0800 Re: How do i pipe data to gnuplot/no-fifo and plot the data on the fly Veek M <veek@dont-use-this.com> - 2020-02-18 14:42 +0000
csiph-web