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
|
=pod
README for PDL::VectorValued
=head1 ABSTRACT
PDL::VectorValued - Assorted PDL utilities treating vectors as values
=head1 REQUIREMENTS
=over 4
=item * PDL
Tested version(s) 2.4.2, 2.4.3, 2.4.7_001, 2.4.9_015, 2.4.10, 2.019, 2.039
=back
=head1 DESCRIPTION
PDL::VectorValued provides some generalizations of builtin PDL
functions to higher order PDLs which treat vectors in the source
PDLs as "data values".
=head1 BUILDING
Build this module as you would any perl module, by doing something
akin to the following:
gzip -dc distname-XX.YY.tar.gz | tar -xof -
cd distname-XX.YY/
perl Makefile.PL
make
make test # optional
make install
See L<perlmodinstall>(1) for details.
=head1 ACKNOWLEDGEMENTS
=over 4
=item *
Perl by Larry Wall
=item *
PDL by Karl Glazebrook, Tuomas J. Lukka, Christian Soeller, and others.
=item *
Code for rlevec() and rldvec() derived from the PDL builtin functions
rle() and rld() in $PDL_SRC_ROOT/Basic/Slices/slices.pd
=back
=head1 AUTHOR
Bryan Jurish E<lt>moocow@cpan.orgE<gt>
=head1 COPYRIGHT
Copyright (c) 2007-2022, Bryan Jurish. All rights reserved.
This package is free software, and entirely without warranty.
You may redistribute it and/or modify it under the same terms
as Perl itself.
=cut
|