We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efffb3e commit c65a8abCopy full SHA for c65a8ab
1 file changed
t/ts.t
@@ -69,8 +69,7 @@ subtest 'acf and acvf with lags' => sub {
69
70
is_pdl $a->acvf(4), $acvf->slice('0:4'), "calculate autocovariance with 4 lags on $a";
71
is_pdl $a->acvf(0), $acvf->slice('0:0'), "calculate autocovariance with 0 lag on $a";
72
- is_pdl $a->acvf(5) / $a->acvf(0), $a->acf(5),
73
- "calculate autocorrelation from autocovariance on $a";
+ is_pdl $a->acvf(5) / $a->acvf(0), $a->acf(5), "calculate autocorrelation from autocovariance on $a";
74
is_pdl $a->acvf(14), $acvf->append([0,0,0,0,0]), "autocovariance called with more lags than values";
75
76
is_pdl $a->acf(), $acf, "calculate autocorrelation with no arguments on $a";
0 commit comments