http://www.perlmonks.org?node_id=920467


in reply to Plot a spiral with gnuplot

When I use gnuplot I use its special file handle '-' and inline the data.

Would it be better to use a tempfile? and if so what are the advantages?

I'd write your code like this :-

use v5.12; use warnings; use autodie; use IO::Handle; open my $out,'|-','gnuplot'; say $out 'unset key'; say $out "plot '-' with lines lw 3"; for my $t (100..500) { say $out $t*sin($t*0.1),' ',$t*cos($t*0.1); } say $out 'e'; flush $out; <STDIN>; close $out;

Replies are listed 'Best First'.
Re^2: Plot a spiral with gnuplot
by ambrus (Abbot) on Aug 16, 2011 at 17:44 UTC

    Frankly, I didn't know you could give gnuplot data inline like that. The manual of gnuplot is a bit long and boring, so I've read only a little of it. Thank you for telling about this.