ErrorAnalysis.Service/PDEVCalcService.cs
@@ -19,6 +19,6 @@ return Math.Sqrt(Math.Pow(nearPDEV * nearCofe, 2) + Math.Pow(farPDEV * farCofe, 2)); } private static double CalcPDEV(double c, double o) => Math.Sqrt(Math.Pow(c / o, 2) * (1 / c + 1 / o)); private static double CalcPDEV(double c, double o) => c / o * Math.Sqrt((1 / c + 1 / o)); } }