The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PDL - Main loader of PDL default modules

DESCRIPTION

Loads the default set of modules associated with PDL, making the functions available in the current namespace. See also PDL::Lite, PDL::LiteF if start-up time becomes an issue.

SYNOPSIS

 use PDL; # Is equivalent to the following:

   use PDL::Core;
   use PDL::Ops;
   use PDL::Primitive;
   use PDL::Basic;
   use PDL::Slices;
   use PDL::Version;
   use PDL::IO::Misc;
   use PDL::Graphics::PGPLOT;