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 ndarrays are not hashes any more:
14 $x = zeroes 10,10;
15 $$x{FOO} = "bar"
16
17 doesn't work. They are currently scalar references (to opaque C
18 structures in finer terms) because of speed as well as syntactic
19 issues. If you want to have a hash, use
20
21 $x->hdr()
22
23 which returns a reference to an anonymous hash. Also, subclassing works
24 if you store an ndarray in the hash member ``PDL''.
25
26 There are also many core enhancements to support Dataflow and Slicing
27 tricks, but these do not introduce any incompatibilities.
28
29 Incompatible Changes vs 1.11
30 rgrep
31 Order of the arguments has changed.
32
33 copy method
34 No longer copies the header. This may not be a misfeature.
35
37 Many of the base and library pods were updated.
38
40 The Changes file for exhaustive details on what changed.
41
42 The INSTALL file for how to build PDL.
43
44 The README file for general stuff.
45
47 pdldelta was inspired by perldelta man page in the Perl 5.004
48 distribution.
49
50
51
52perl v5.34.0 2022-02-28 DELTA(1)