好吧,我经常搜索,找到如何为给定点绘制平滑线。首先,我有一个带有此值的文件
InitialSetup.init
然后我尝试使用此代码绘制一条平滑的线
public DataAccess()
{
dbcon = DependencyService.Get<ISQLite>().GetConnection();
// create the tables
dbcon.CreateTable<Category>();
dbcon.CreateTable<Settings>();
当我35,9.662
30,9.074
25,8.21
20,7.45
15,6.3
10,5.34
7,4.61
4,3.31
21,7.77
时,它会打印一个包含所有元素x, y = np.loadtxt('design', delimiter = ',', unpack = True)
xSmooth = np.linspace(x.min(),x.max(),300)
ySmooth = spline(x,y,xSmooth)
的数组。我该怎么办?