Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pdl::doc::perldl(3pm) [debian man page]

Doc::Perldl(3pm)					User Contributed Perl Documentation					  Doc::Perldl(3pm)

NAME
PDL::Doc::Perldl - commands for accessing PDL doc database from 'perldl' shell DESCRIPTION
This module provides a simple set of functions to access the PDL documentation of database, for use from the perldl or pdl2 shells as well as the pdldoc command-line program. Autoload files are also matched, via a search of the PDLLIB autoloader tree. That behavior can be switched off with the variable $PERLDL::STRICT_DOCS (true: don't search autoload tree; false: search the autoload tree.) Currently, multiple matches are not handled very well. SYNOPSIS
use PDL::Doc::Perldl; # Load all documenation functions BUGS
The description contains the misleading word "simple". FUNCTIONS
apropos Regex search PDL documentation database apropos 'text' pdl> apropos 'pic' rpic Read images in many formats with automatic format detection. rpiccan Test which image formats can be read/written wmpeg Write an image sequence ((x,y,n) piddle) as an MPEG animation. wpic Write images in many formats with automatic format selection. wpiccan Test which image formats can be read/written To find all the manuals that come with PDL, try apropos 'manual:' and to get quick info about PDL modules say apropos 'module:' You get more detailed info about a PDL function/module/manual with the "help" function PDL::Doc::Perldl::search_docs Internal routine to search docs database and autoload files PDL::Doc::Perldl::finddoc Internal interface to the PDL documentation searcher find_autodoc Internal helper routine that finds and returns documentation in the autoloader path, if it exists. You feed in a topic and it searches for the file "${topic}.pdl". If that exists, then the filename gets returned in a match structure appropriate for the rest of finddoc. usage Prints usage information for a PDL function Usage: usage 'func' pdl> usage 'inner' inner inner prodcuct over one dimension (Module PDL::Primitive) Signature: inner(a(n); b(n); [o]c(); ) sig prints signature of PDL function sig 'func' The signature is the normal dimensionality of the function's arguments. Calling with different dimensions doesn't break -- it causes threading. See PDL::PP for details. pdl> sig 'outer' Signature: outer(a(n); b(m); [o]c(n,m); ) whatis Describe a perl and/or PDL variable or expression. Useful for determining the type of an expression, identifying the keys in a hash or a data structure, or examining WTF an unknown object is. Usage: whatis $var whatis <expression> help print documentation about a PDL function or module or show a PDL manual In the case of multiple matches, the first command found is printed out, and the remaining commands listed, along with the names of their modules. Usage: help 'func' pdl> help 'PDL::Tutorials' # show the guide to PDL tutorials pdl> help 'PDL::Slices' # show the docs in the PDL::Slices module pdl> help 'slice' # show docs on the 'slice' function badinfo provides information on the bad-value support of a function And has a horrible name. badinfo 'func' perl v5.14.2 2012-01-02 Doc::Perldl(3pm)

Check Out this Related Man Page

Padre::Plugin::PDL(3pm) 				User Contributed Perl Documentation				   Padre::Plugin::PDL(3pm)

NAME
Padre::Plugin::PDL - PDL support for Padre SYNOPSIS
cpan Padre::Plugin::PDL Then use it via Padre, The Perl IDE. DESCRIPTION
Once enabled, one will automatically get the following features: Context-sensitive help integration Press F2 to get the help for the current PDL keyword BUGS
Please report any bugs or feature requests to "bug-padre-plugin-pdl at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Padre-Plugin-PDL <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Padre-Plugin-PDL>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Padre::Plugin::PDL You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-PDL <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-PDL> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Padre-Plugin-PDL <http://annocpan.org/dist/Padre-Plugin-PDL> o CPAN Ratings http://cpanratings.perl.org/d/Padre-Plugin-PDL <http://cpanratings.perl.org/d/Padre-Plugin-PDL> o Search CPAN http://search.cpan.org/dist/Padre-Plugin-PDL/ <http://search.cpan.org/dist/Padre-Plugin-PDL/> SEE ALSO
PDL, Padre AUTHORS
Ahmad M. Zawawi <ahmad.zawawi@gmail.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ahmad M. Zawawi This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-15 Padre::Plugin::PDL(3pm)
Man Page