1Lite(3) User Contributed Perl Documentation Lite(3)
2
3
4
6 PDL::Lite - minimum PDL module OO loader
7
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", "ndarray", "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
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::Lvalue;
30
31
32
33perl v5.34.0 2021-08-16 Lite(3)