huzefa52 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl #use strict; use Chart::Gnuplot; # Create the chart object my $chart = Chart::Gnuplot->new( output => "plot3d_10.png", title => "A heat map", view => 'map', isosamples => 60, ); # Data set object my $dataSet = Chart::Gnuplot::DataSet->new( func => "-(x**2 + y**2)", style => 'pm3d', ); # Plot the graph $chart->plot3d($dataSet);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to create heat map in perl
by daxim (Curate) on Sep 03, 2013 at 14:21 UTC | |
|
Re: How to create heat map in perl
by VinsWorldcom (Prior) on Sep 03, 2013 at 15:40 UTC |