in reply to Re^3: Chart::Gnuplot and Windows XP
in thread Chart::Gnuplot and Windows XP
It's not me mixing up "/" and "\", judge for yourself:
use strict; use warnings; use Chart::Gnuplot; my $chart = Chart::Gnuplot->new( output => "c:/tmp/test.png", title => "Simple testing", xlabel => "My x-axis label", ylabel => "My y-axis label", gnuplot => "C:/gnuplot/binaries/wgnuplot.exe", ); my $dataSet = Chart::Gnuplot::DataSet->new( func => "sin(x)" ); $chart->plot2d($dataSet); print "Done...\n";
Resulting in the familiar error message;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Chart::Gnuplot and Windows XP
by massa (Hermit) on Nov 05, 2008 at 13:43 UTC | |
by dHarry (Abbot) on Nov 05, 2008 at 15:15 UTC |