#!/usr/bin/perl -w use strict; use Chart::Gnuplot; my $chart = Chart::Gnuplot->new( output => 'gallery/chartFmt_2.png', xlabel => "x-axis label", ylabel => "y-axis label", ); my $data = Chart::Gnuplot::DataSet->new( func => "tanh(x)", ); # Plot the graph $chart->plot2d($data);