1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
Source: pdl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Henning Glawe <glaweh@debian.org>,
Ed J <etj@cpan.org>
Section: math
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
libastro-fits-header-perl,
libdevel-checklib-perl,
libfile-map-perl,
libfile-which-perl,
libinline-perl,
libinline-c-perl,
libpod-parser-perl,
libtest-deep-perl,
libtest-exception-perl,
libtest-warn-perl,
libtext-balanced-perl (>= 2.05),
perl-xs-dev,
perl:native
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/pdl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/pdl.git
Homepage: https://pdl.perl.org/
Rules-Requires-Root: binary-targets
Package: pdl
Architecture: any
Depends: libdebhelper-perl,
libfile-map-perl,
libfile-which-perl,
libpod-parser-perl,
libterm-readkey-perl,
libtext-balanced-perl (>= 2.05),
sensible-utils,
${perl:Depends},
${shlibs:Depends},
${misc:Depends}
Recommends: libpdl-filter-perl,
libpdl-fit-perl,
libpdl-io-dicom-perl,
libpdl-io-envi-perl,
libpdl-io-gd-perl,
libpdl-io-hdf-perl,
libpdl-io-idl-perl,
libpdl-graphics-trid-perl,
libpdl-gsl-perl,
libpdl-opt-simplex-perl,
libpdl-transform-proj4-perl,
libterm-readline-gnu-perl | libterm-readline-perl-perl
Suggests: doc-base,
libastro-fits-header-perl,
libinline-perl,
libinline-c-perl,
libmodule-compile-perl
Conflicts: r-pdl
Provides: dh-sequence-pdl,
${pdlapi:Provides}
Replaces: r-pdl
Description: perl data language: Perl extensions for numerics
PDL gives standard perl the ability to COMPACTLY
store and SPEEDILY manipulate the large N-dimensional data arrays
which are the bread and butter of scientific computing. The idea
is to turn perl in to a free, array-oriented, numerical language
in the same sense as commercial packages like IDL and MatLab. One
can write simple perl expressions to manipulate entire numerical arrays
all at once. For example, using PDL the perl variable $a can hold a
1024x1024 floating point image, it only takes 4Mb of memory to store
it and expressions like $a=sqrt($a)+2 would manipulate the whole image
in a few seconds.
.
A simple interactive shell (perldl) is provided for command line use
together with a module (PDL) for use in perl scripts.
|