using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { /// /// /// public interface IFitCurvePoint { /// /// 获取拟合点Y /// double GetFitPointY(double x); /// /// 获取拟合点列表 /// List GetFitPoints(int pointNumber); /// /// 通过区间获取拟合点列表 /// List GetFitPointsByRange(double x_min, double x_max, int pointNumber); } }