NAME

Graphics::PLPLOT - Perl interface to the PLPLOT plotting library

SYNOPSIS

use Graphics::Plot qw/ :all /;

plsdev( "xwin" );
plinit();
plcol0(1);

plenv( -1, 1, -1, 1, 1, -2 );
plline(\@x, \@y);

plend();

DESCRIPTION

This module provides a perl interface to the PLPLOT plotting library available from http://www.plplot.org. The interface is very similar to the C interface except that:

- Arrays are passed in by reference
- If the number of elements in an array are required by the C function
  the perl interface calculates this automatically [eg plline]
- Return values are returned not supplied as arguments

EXAMPLES

This module is distributed with Perl versions of many of the C example files that are distributed as part of PLPLOT itself. They can be used to learn the Perl interface.

TODO

This module is not yet complete since only a subset of the PLPLOT functions are available. More will be added as I get time to implement them.

SEE ALSO

The PDL::Graphics::PLPLOT module (distributed with PDL is more suitable for plotting large data arrays. This module exists primarily for cases where a dependency on PDL is not desirable.

The PLPLOT library is very similar to the PGPLOT library (see the PGPLOT module).

The Starlink::AST module provides a graphics interface to this PLPLOT module.

AUTHOR

Tim Jenness <t.jenness@jach.hawaii.edu>

Copyright (C) 2004 Tim Jenness. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place,Suite 330, Boston, MA 02111-1307, USA