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

hummer
 2015-07-16 15:38
#181600 #181600
User since
2013-06-12
22 Artikel
BenutzerIn
[default_avatar]
Hallo Forum,

ich möchte im Rahmen einer automatisierten Datenauswertung gern die csv Daten grafisch darstellen lassen.
Auf wunsch und weil dies schon in anderen Systemen implementiert ist, soll Gnuplot verwendet werden.
aktuell wird Gnuplot4.6 verwendet.

Nach einiger Suche im Netz wurde ich auf das Modul CPAN Chart::Gnuplot aufmerksam.


Mit foglendem Beispielcode
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
use Chart::Gnuplot;

# Data
my @x = (-10 .. 10);
my @y = (0 .. 20);

# 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 => ".../lib/gnuplot/bin/wgnuplot.exe",

);

# 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",

);

$chart->plot2d($dataSet);

habe ich folgende aufgabe

Code: (dl )
util.c: No such file or directory


das Problem tritt nur auf, wenn ich den Befehl
Code: (dl )
$chart->plot2d($dataSet);
ausführe

Was kann das problem sein?

Die Gnuplotexe ist innerhalb des Ordners wo sich auch das Programm befindet. Die Pfadangebe wird über das Objekt realisiert.

Da dies ein BEispielprogramm seitens des entwicklers ist, gehe ich davon aus, das hier keine Fehler vorliegen sollten.

Kann mir jemand helfen?
Liegt es vllt an der Programversion von Gnuplot und dem Modul?

Vielen Dank im voraus

Viele Grüße

View full thread Gnuplot Fehler util.c