ErrorAnalysis.Service/Utility.cs
@@ -23,13 +23,5 @@ double y = y0 + (value - x0) * (y1 - y0) / (x1 - x0); return y; } public static (double, double) InterpolateBySw(double c, double o, double sw) { var cRes = (100 - sw) / 100 * c; var oRes = sw / 100 * o; return (cRes, oRes); } } }