Help for this page

Select Code to Download


  1. or download this
    package PDL::CV;
    use parent qw{ PDL };  # Tell Perl what your parent class is.
    ...
            PDL => shift,  # See PDL::Objects for details.
        }, $class
    }
    
  2. or download this
    my $d = PDL::CV->new(sequence(4,5));
    my $t = pdl sequence(100,5,5);
    $d(0,1:4)->rp($t(0,0,1:4));