Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
演示数据
数据集可以在这里找到: 数据集 每个点 (x;y) 表示测量的第 x 个样本的值 (y)
我正在尝试通过使用 2 行 y=a 和 y=b 来绑定具有最多数据点的数据区域,就像图中一样
假设 y 值的最小值和最大值分别为 960 和 972:
y(y < 960) = 960; y(y > 972) = 972;
或者,您可以删除这些异常值而不是限制它们:
y_idx = find((y < 960) | (y > 972)); x(y_idx) = []; y(y_idx) = [];