PDL changes between V1.0 and V2.0


SUBMITTED BY: Guest

DATE: June 4, 2014, 6:42 a.m.

FORMAT: Text only

SIZE: 1.3 kB

HITS: 5010

  1. NAME
  2. PDL::Delta - PDL changes between V1.0 and V2.0
  3. DESCRIPTION
  4. This file is an attempt to list the major user-visible changes between PDL versions 1.0 and 2.0.
  5. Core Changes
  6. Piddles are not hashes any more:
  7. $a = zeroes 10,10;
  8. $$a{FOO} = "bar"
  9. doesn't work. They are currently scalar references (to opaque C structures in finer terms) because of speed as well as syntactic issues. If you want to have a hash, use
  10. $a->hdr()
  11. which returns a reference to an anonymous hash. Also, subclassing works if you store a piddle in the hash member ``PDL''.
  12. There are also many core enhancements to support Dataflow and Slicing tricks, but these do not introduce any incompatbilities.
  13. Incompatible Changes vs 1.11
  14. rgrep
  15. Order of the arguments has changed.
  16. copy method
  17. No longer copies the header. This may not be a misfeature.
  18. Documentation Changes
  19. Many of the base and library pods were updated.
  20. SEE ALSO
  21. The Changes file for exhaustive details on what changed.
  22. The INSTALL file for how to build PDL.
  23. The README file for general stuff.
  24. HISTORY
  25. pdldelta was inspired by perldelta man page in the perl 5.004 distribution.

comments powered by Disqus