#!/usr/bin/perl -w
use strict;
use Chart::Gnuplot;
# Initiate the chart object
my $chart = Chart::Gnuplot->new(
output => 'chartFmt_3.png',
);
# Data sets
my $data = Chart::Gnuplot::DataSet->new(
func => "tanh(x)",
title => 'legend', # legend
);
# Plot the graph
$chart->plot2d($data);