PDL::Lite (3)
Leading comments
Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) Standard preamble: ========================================================================
NAME
PDL::Lite - minimum PDL module OO loaderDESCRIPTION
Loads the smallest possible set of modules forPDL
to work, importing only those functions always defined by
PDL::Core) into the current namespace
("pdl", "piddle", "barf" and "null").
This is the absolute minimum set for PDL.
Access to other functions is by method syntax, viz:
$x = PDL->pdl(1, 2, 3, 4, 5); $x->wibble(42);
SYNOPSIS
use PDL::Lite; # Is equivalent to the following: use PDL::Core ''; use PDL::Ops ''; use PDL::Primitive ''; use PDL::Ufunc ''; use PDL::Basic ''; use PDL::Slices ''; use PDL::Bad ''; use PDL::Version; use PDL::Lvalue;