NAME

Statistics::Basic::ComputedVector - a class for computing filtered vectors

SYNOPSIS

Invoke it this way:

my $vector   = vector(1,2,3);
my $computed = computed($vector);
   $computed->set_filter(sub{
       # NOTE: only interested in even numbers:
       grep { !($_ % 2) } @_
   });

AUTHOR

Paul Miller <jettero@cpan.org>

SEE ALSO

perl(1), Statistics::Basic