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

NAME

PDL::LiteF - minimum PDL module function loader

DESCRIPTION

Loads the smallest possible set of modules for PDL to work, making the functions available in the current namespace. If you want something even smaller see the PDL::Lite module.

SYNOPSIS

 use PDL::LiteF; # Is equivalent to the following:

   use PDL::Core;
   use PDL::Ops;
   use PDL::Primitive;
   use PDL::Basic;
   use PDL::Slices;
   use PDL::Version;