1Lite(3)               User Contributed Perl Documentation              Lite(3)
2
3
4

NAME

6       PDL::Lite - minimum PDL module OO loader
7

DESCRIPTION

9       Loads the smallest possible set of modules for PDL to work, without
10       importing an functions in to the current namespace. This is the
11       absolute minimum set for PDL.
12
13       Although no functions are defined (apart from a few always exported by
14       PDL::Core) you can still use method syntax, viz:
15
16         $x->wibble(42);
17

SYNOPSIS

19        use PDL::Lite; # Is equivalent to the following:
20
21          use PDL::Core '';
22          use PDL::Ops '';
23          use PDL::Primitive '';
24          use PDL::Ufunc '';
25          use PDL::Basic '';
26          use PDL::Slices '';
27          use PDL::Bad '';
28          use PDL::Version;
29          use PDL::Lvalue;
30
31
32
33perl v5.12.3                      2009-10-17                           Lite(3)
Impressum