LinPred.pm (PDL-2.082) | : | LinPred.pm (PDL-2.083) | ||
---|---|---|---|---|
=head1 NAME | =head1 NAME | |||
PDL::Filter::LinPred - Linear predictive filtering | PDL::Filter::LinPred - Linear predictive filtering | |||
=head1 SYNOPSIS | =head1 SYNOPSIS | |||
$x = new PDL::Filter::LinPred( | $x = PDL::Filter::LinPred->new( | |||
{NLags => 10, | {NLags => 10, | |||
LagInterval => 2, | LagInterval => 2, | |||
LagsBehind => 2, | LagsBehind => 2, | |||
Data => $dat}); | Data => $dat}); | |||
($pd,$corrslic) = $x->predict($dat); | ($pd,$corrslic) = $x->predict($dat); | |||
=head1 DESCRIPTION | =head1 DESCRIPTION | |||
A filter by doing linear prediction: tries to predict the next value | A filter by doing linear prediction: tries to predict the next value | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |