1DELTA(1) User Contributed Perl Documentation DELTA(1)
2
3
4
6 PDL::Delta - PDL changes between V1.0 and V2.0
7
9 This file is an attempt to list the major user-visible changes between
10 PDL versions 1.0 and 2.0.
11
13 Piddles are not hashes any more:
14
15 $a = zeroes 10,10;
16 $$a{FOO} = "bar"
17
18 doesn't work. They are currently scalar references (to opaque C struc‐
19 tures in finer terms) because of speed as well as syntactic issues. If
20 you want to have a hash, use
21
22 $a->hdr()
23
24 which returns a reference to an anonymous hash. Also, subclassing works
25 if you store a piddle in the hash member ``PDL''.
26
27 There are also many core enhancements to support Dataflow and Slicing
28 tricks, but these do not introduce any incompatbilities.
29
30 Incompatible Changes vs 1.11
31
32 rgrep
33 Order of the arguments has changed.
34
35 copy method
36 No longer copies the header. This may not be a misfeature.
37
39 Many of the base and library pods were updated.
40
42 The Changes file for exhaustive details on what changed.
43
44 The INSTALL file for how to build PDL.
45
46 The README file for general stuff.
47
49 pdldelta was inspired by perldelta man page in the perl 5.004 distri‐
50 bution.
51
52
53
54perl v5.8.8 2003-05-21 DELTA(1)