PGPLOT::Simple

PGPLOT::Simple is a simple Perl Interface to PGPLOT.
Download

PGPLOT::Simple Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Florian Merges
  • Publisher web site:
  • http://search.cpan.org/~fmerges/PGPLOT-Simple-0.05/lib/PGPLOT/Simple.pm

PGPLOT::Simple Tags


PGPLOT::Simple Description

PGPLOT::Simple is a simple Perl Interface to PGPLOT. PGPLOT::Simple is a simple Perl Interface to PGPLOT.SYNOPSIS use strict; use PGPLOT::Simple qw(:essential); die "Must provide a filename.n" unless @ARGV; my $filename = shift; chomp $filename; unless ( $filename =~ /.ps$/ ) { $filename .= ".ps"; } set_begin({ file => "$filename/CPS", }); set_environment({ x_min => 0, x_max => 50, y_min => 0, y_max => 10, }); write_label({ title => 'A Simple Graph Using PGPLOT::Simple', color => 'Blue', font => 'Italic', }); draw_points({ x => , y => , color => 'Blue', width => 20, }); draw_error_bars({ x => , y1 => , y2 => , terminal => 10, width => 10, color => 'Orange', }); set_end;PGPLOT::Simple is a simple interface to the PGPLOT library ala Perl, making simple things easy and difficult things possible.Why simple? Because it has a simple and intiutive interface to the most common things you will need from PGPLOT, but also allowing you low-level access to the PGPLOT library. Requirements: · Perl


PGPLOT::Simple Related Software