Statistics::Basic::ComputedVector.3pm

Langue: en

Autres versions - même langue

Version: 2009-05-02 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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>" Copyright 2009 Paul Miller --- Licensed under the LGPL

SEE ALSO

perl(1), Statistics::Basic