—————=head1 NAME
PDL::Constants -- basic compile time constants for PDL
=head1 DESCRIPTION
This module is used to define compile time constant
values for PDL. It uses Perl's L<constant> pragma for
simplicity and availability.
=head1 SYNOPSIS
use PDL::Constants qw(PI E);
print 'PI is ' . PI . "\n";
print 'E is ' . E . "\n";
=cut
package
PDL::Constants;
use
strict;
use
warnings;
our
$VERSION
=
"0.02"
;
$VERSION
=
eval
$VERSION
;
require
Exporter;
our
@ISA
=
qw(Exporter)
;
our
@EXPORT_OK
=
qw(PI DEGRAD E I J)
;
# symbols to export
use
PDL::Lite;
=head2 PI
The ratio of a circle's circumference to its diameter
=cut
=head2 DEGRAD
The number of degrees of arc per radian (180/PI)
=cut
=head2 E
The base of the natural logarithms or Euler's number
=cut
=head1 COPYRIGHT & LICENSE
Copyright 2010 Chris Marshall (chm at cpan dot org).
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1;