diff options
author | steve <steve@FreeBSD.org> | 1999-04-03 02:13:53 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-04-03 02:13:53 +0000 |
commit | ed19a378c2049b9e2fc6633ef2036f9ffdf9b7b9 (patch) | |
tree | 911558d9a3dd75b96058dfcec8a61175d293e9b9 /math/PDL/pkg-descr | |
parent | 083f0024a7a44d4b69cc6aa728a593ce773d1fc7 (diff) | |
download | FreeBSD-ports-ed19a378c2049b9e2fc6633ef2036f9ffdf9b7b9.zip FreeBSD-ports-ed19a378c2049b9e2fc6633ef2036f9ffdf9b7b9.tar.gz |
Import of PDL version 2.0.
The Perl Data Language.
PR: 9984
Submitted by: Anton Berezin <tobez@plab.ku.dk>
Diffstat (limited to 'math/PDL/pkg-descr')
-rw-r--r-- | math/PDL/pkg-descr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/math/PDL/pkg-descr b/math/PDL/pkg-descr new file mode 100644 index 0000000..510b1ae --- /dev/null +++ b/math/PDL/pkg-descr @@ -0,0 +1,16 @@ +PDL (``Perl Data Language'') 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 commerical 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. + +http://www.aao.gov.au/local/www/kgb/perldl/ |