def smooth(self):
"""
This function ...
:return:
"""
order = 2
s = InterpolatedUnivariateSpline(self.centers, self.counts, k=order)
# Return the spline curve
return s
# -----------------------------------------------------------------
评论列表
文章目录