Thread Gnuplot Fehler util.c (8 answers)
Opened by hummer at 2015-07-16 15:38

hummer
 2015-07-16 22:04
#181612 #181612
User since
2013-06-12
22 Artikel
BenutzerIn
[default_avatar]
so habe die Lösung gefunden:
anbei für alle anderen.

für die nutzung von Gnuplot und den formate png, bmp usw. wird das Tool convert.exe benötigt.

Donload unter:
convert.exe

einfach entpcken und in belibigen Ordner legen.

folgen Code muss ergänzt werden
Code: (dl )
1
2
        convert => "C:/Users/.../lib/convert.exe",
terminal => "png",


anbei der complette Code:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
    use Chart::Gnuplot;


# Data
my @x = (1,2,3,4,5,6,7,8,9);
my @y = (1,2,3,4,5,6,7,8,9);

mkdir "fig";
# Create chart object and specify the properties of the chart
my $chart = Chart::Gnuplot->new(
output => "fig/simple.png",

# title => "Simple testing",
# xlabel => "My x-axis label",
# ylabel => "My y-axis label",
gnuplot => "C:/Users/.../gnuplot423/bin/wgnuplot.exe",
convert => "C:/Users/.../lib/convert.exe",
terminal => "png",
);
# $chart->convert('png');
# Create dataset object and specify the properties of the dataset
my $dataSet = Chart::Gnuplot::DataSet->new(
xdata => \@x,
ydata => \@y,
# title => "Plotting a line from Perl arrays",
# style => "linespoints",

);


# Plot the data set on the chart
$chart->plot2d($dataSet);


hoffe das andere Hilfe über das Topic finden

View full thread Gnuplot Fehler util.c