From 89ca945961c1fa6a95c78f81fe972ad5bc292eee Mon Sep 17 00:00:00 2001 From: chaos Date: Sat, 9 Nov 2024 13:21:24 +0000 Subject: [PATCH] update --- tool/lib/journalLib.jq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/lib/journalLib.jq b/tool/lib/journalLib.jq index f1bf1d8..94a811a 100644 --- a/tool/lib/journalLib.jq +++ b/tool/lib/journalLib.jq @@ -20,7 +20,7 @@ def addStandardDeviations($expectationX; $standardDeviationX; $expectationY; $st (pow($expectationX; 2) * pow($expectationY; 2)) as $expectations | ($sumX * $sumY - $expectations) as $productVariance | if $productVariance > 0.0000001 then - $productVariance | sqrt + $productVariance | debug | sqrt else null end;