PDL-Graphics-PLplot
view release on metacpan or search on metacpan
GENERATED/PDL/Graphics/PLplot.pm view on Meta::CPAN
#
# GENERATED WITH PDL::PP from plplot.pd! Don't modify!
#
package PDL::Graphics::PLplot;
our @EXPORT_OK = qw(PL_PARSE_PARTIAL PL_PARSE_FULL PL_PARSE_QUIET PL_PARSE_NODELETE PL_PARSE_SHOWALL PL_PARSE_OVERRIDE PL_PARSE_NOPROGRAM PL_PARSE_NODASH PL_PARSE_SKIP PL_NOTSET DRAW_LINEX DRAW_LINEY DRAW_LINEXY MAG_COLOR BASE_CONT TOP_CONT SURF_CONT...
our %EXPORT_TAGS = (Func=>\@EXPORT_OK);
use PDL::Core;
use PDL::Exporter;
use DynaLoader;
our @ISA = ( 'PDL::Exporter','DynaLoader' );
push @PDL::Core::PP, __PACKAGE__;
bootstrap PDL::Graphics::PLplot ;
#line 6 "plplot.pd"
use Carp qw(confess);
our $VERSION;
BEGIN {
$VERSION = '0.842';
};
=head1 NAME
PDL::Graphics::PLplot - Object-oriented interface from perl/PDL to the PLPLOT plotting library
=head1 SYNOPSIS
use PDL;
use PDL::Graphics::PLplot;
my $pl = PDL::Graphics::PLplot->new (DEV => "png", FILE => "test.png");
my $x = sequence(10);
my $y = $x**2;
$pl->xyplot($x, $y);
$pl->close;
Only version 5.15.0+ of PLplot is fully supported, due to a C-level API change
that is invisible at PDL-level. However, the library does support installation
with PLplot 5.13.0+.
For more information on PLplot, see
http://www.plplot.org/
Also see the test file, F<t/plplot.t> in this distribution for some working examples.
=head1 LONG NAMES
If you are annoyed by the long constructor call, consider installing the
L<aliased|aliased> CPAN package. Using C<aliased>, the above example
becomes
use PDL;
( run in 0.356 second using v1.01-cache-2.11-cpan-63c85eba8c4 )