Dbg(3pm) | User Contributed Perl Documentation | Dbg(3pm) |
PDL::Dbg - functions to support debugging of PDL scripts
use PDL; use PDL::Dbg; $c = $x->slice("5:10,2:30")->px->diagonal(3,4); PDL->px;
These packages implements a couple of functions that should come in handy when debugging your PDL scripts. They make a lot of sense while you're doing rapid prototyping of new PDL code, let's say inside the perldl or pdl2 shell.
Print info about an ndarray (or all known ndarrays)
pdl> PDL->px pdl> $y += $x->clump(2)->px('clumptest')->sumover pdl> $x->px('%C (%A) Type: %T') # prints nothing unless $PDL::debug pdl> $PDL::debug = 1 pdl> $x->px('%C (%A) Type: %T') PDL (52433464) Type: Double
This function prints some information about ndarrays. It can be invoked as a class method (e.g. "PDL->px" ) or as an instance method (e.g. "$pdl->px($arg)"). If
pdl> PDL->px('PDL::Mypack')
The default package is that of the caller.
The output of px will be determined by the default formatting string that is passed to the "info" method (unless you pass a string containing "%" to px when invoking as an instance method, see above). This default string is stored in $PDL::Dbg::Infostr and the default output format can be accordingly changed by setting this variable. If you do this you should also change the default title string that the class method branch prints at the top of the listing to match your new format string. The default title is stored in the variable $PDL::Dbg::Title.
For historical reasons "vars" is an alias for "px".
Alias for "px"
There are probably some. Please report if you find any. Bug reports should be sent to the PDL mailing list pdl-general@lists.sourceforge.net.
Copyright(C) 1997 Christian Soeller (c.soeller@auckland.ac.nz). All rights reserved. There is no warranty. You are allowed to redistribute this software / documentation under certain conditions. For details, see the file COPYING in the PDL distribution. If this file is separated from the PDL distribution, the copyright notice should be included in the file.
2023-04-27 | perl v5.36.0 |