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

hummer
 2015-07-16 20:43
#181608 #181608
User since
2013-06-12
22 Artikel
BenutzerIn
[default_avatar]
Hallo,
ja, ein typischer Fehler mit Copy Paste.
Nun habe ich den den Pfad geändert.

Nun bekomme ich den Fehler:
unzulässiger Parameter 90

anbei der 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
    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);

# Create chart object and specify the properties of the chart
my $chart = Chart::Gnuplot->new(
output => "C:/Users/Marco/Desktop/simple.jpg",
# title => "Simple testing",
# xlabel => "My x-axis label",
# ylabel => "My y-axis label",
/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",

);


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


Was bedeutet dieser Code?
Wo kann der Fehler liegen?

View full thread Gnuplot Fehler util.c