
ObjStore::Lib::PDL - Persistent PDL-compatible matrices

use PDL::Lite;
use ObjStore::Lib::PDL;
begin 'update', sub {
my $pdl = ObjStore::Lib::PDL->new($near,
{ Datatype => PDL::float(), Dims => [3,3] });
$pdl->slice(":,4")->clump(2) *= 2; #or whatever
};
die if $@;

The main thing of interest is that dimensions are arranged in memory such that the first dimension is the most packed. For example, in a PDL of dimensions [2,3] the layout is as follows:
[0,1] [2,3] [4,5]
Be aware that this memory layout convention is dependent on the implementation of PDL. It is, however, very unlikely to change.


Copyright © 1999 Joshua Nathaniel Pritikin. All rights reserved.
This package is free software and is provided "as is" without express or implied warranty. It may be used, redistributed and/or modified under the terms of the Perl Artistic License (see http://www.perl.com/perl/misc/Artistic.html)