ssta/pocv derating for sigmas

This commit is contained in:
James Cherry 2019-12-20 18:42:06 -07:00
parent 3502671d17
commit 750f1e98de
2 changed files with 3 additions and 3 deletions

View File

@ -351,7 +351,7 @@ operator*(const Delay &delay1,
float delay2)
{
return Delay(delay1.mean() * delay2,
delay1.sigma2() * delay2);
delay1.sigma2() * delay2 * delay2);
}
float

View File

@ -377,8 +377,8 @@ operator*(const Delay &delay1,
float delay2)
{
return Delay(delay1.mean() * delay2,
delay1.sigma2Early() * delay2,
delay1.sigma2Late() * delay2);
delay1.sigma2Early() * delay2 * delay2,
delay1.sigma2Late() * delay2 * delay2);
}
float