anthonyt has asked for the wisdom of the Perl Monks concerning the following question:
Also, is there a way to find out if gnuplot is complaining about something through Chart::Gnuplot ?#!/usr/bin/perl use warnings; use Chart::Gnuplot; my $chart = Chart::Gnuplot->new( gnuplot => 'e:\apps\gnuplot\bin\wgnuplot.exe', output => 'testfile.gif', terminal => "gif transparent", ); my @xy = ( [1.1, -3], [1.2, -2], [3.5, 0] ); my $dataSet = Chart::Gnuplot::DataSet->new( points => \@xy # func => "20*sin(x)" ); $chart->plot2d($dataSet);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Chart::Gnuplot dataset under Windows XP empty GIF
by toolic (Bishop) on Feb 15, 2009 at 02:26 UTC | |
by anthonyt (Novice) on Feb 15, 2009 at 14:35 UTC | |
by Anonymous Monk on Feb 15, 2009 at 14:52 UTC | |
by anthonyt (Novice) on Feb 15, 2009 at 16:54 UTC | |
|
Re: Chart::Gnuplot dataset under Windows XP empty GIF
by anthonyt (Novice) on Feb 16, 2009 at 15:38 UTC |