mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-17 10:08:05 +00:00
[CodeFactor] Apply fixes to commit 9697fac
This commit is contained in:
@@ -263,7 +263,7 @@ public sealed class Pacf : AbstractBase
|
||||
// Update coefficients: φ_kj = φ_{k-1,j} - φ_kk * φ_{k-1,k-j}
|
||||
for (int j = 1; j < k; j++)
|
||||
{
|
||||
phi[j] = phiPrev[j] - phi[k] * phiPrev[k - j];
|
||||
phi[j] = phiPrev[j] - (phi[k] * phiPrev[k - j]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user