ITIC曲线画图区间问题

This commit is contained in:
hzj
2026-01-19 09:35:26 +08:00
parent 97ddd133f0
commit ca7f1010b0
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ public class BusinessDataUtil {
List<List<Double>> unTolerateData = new ArrayList<>();
for (List<Double> list : originData) {
//是否超过上限
if (list.get(0) <= 0.03) {
if (list.get(0) <= 0.003) {
int line = 230 - 30000 * list.get(0).intValue();
if (list.get(1) > line) {
unTolerateData.add(list);