This commit is contained in:
chaos 2024-11-09 13:21:24 +00:00
parent 1ab3c852df
commit 89ca945961

View file

@ -20,7 +20,7 @@ def addStandardDeviations($expectationX; $standardDeviationX; $expectationY; $st
(pow($expectationX; 2) * pow($expectationY; 2)) as $expectations | (pow($expectationX; 2) * pow($expectationY; 2)) as $expectations |
($sumX * $sumY - $expectations) as $productVariance | ($sumX * $sumY - $expectations) as $productVariance |
if $productVariance > 0.0000001 then if $productVariance > 0.0000001 then
$productVariance | sqrt $productVariance | debug | sqrt
else else
null null
end; end;