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, importing
10       only those functions always defined by PDL::Core) into the current
11       namespace ("pdl", "piddle", "barf" and "null").  This is the absolute
12       minimum set for PDL.
13
14       Access to other functions is by method syntax, viz:
15
16         $x = PDL->pdl(1, 2, 3, 4, 5);
17         $x->wibble(42);
18

SYNOPSIS

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