=head1 NAME Statistics::Basic::Covariance - find the covariance between two lists =head1 SYNOPSIS Invoke it this way: my $covariance = covariance( [1,2,3], [1,2,3] ); Or this way: my $v1 = vector(1,2,3); my $v2 = vector(1,2,3); my $cov = cov($v1,$v2); And then either query the values or print them like so: print "The covariance between $v1 and $v2: $covariance\n"; my $cq = $cov->query; my $c0 = 0+$cov; Create a 20 point "moving" covariance like so: use Statistics::Basic qw(:all nofill); my $sth = $dbh->prepare("select col1,col2 from data where something"); my $len = 20; my $cov = cov(); $cov->set_size($len); $sth->execute or die $dbh->errstr; $sth->bind_columns( my ($lhs, $rhs) ) or die $dbh->errstr; my $count = $len; while( $sth->fetch ) { $cov->insert( $lhs, $rhs ); if( defined( my $c = $cov->query ) ) { print "Covariance: $c\n"; } # This would also work: # print "Covariance: $cov\n" if $cov->query_filled; } =head1 METHODS This list of methods skips the methods inherited from L (things like L, L, and L). =over 4 =item B Create a new L object. This function takes two arguments -- which can either be arrayrefs or L objects. This function is called when the L shortcut-function is called. =item B Return the L for the first vector. =item B Return the L object for the second vector. =item B Returns the L object for the first vector. =item B Returns the L object for the second vector. =back =head1 OVERLOADS This object is overloaded. It tries to return an appropriate string for the calculation or the value of the computation in numeric context. In boolean context, this object is always true (even when empty). =head1 AUTHOR Paul Miller C<< >> =head1 COPYRIGHT Copyright 2009 Paul Miller -- Licensed under the LGPL =head1 SEE ALSO perl(1), L, L, L =cut