码迷,mamicode.com
首页 > 其他好文 > 详细

平滑曲线

时间:2019-01-04 00:25:19      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:col   cto   style   app   return   ret   else   point   actor   

def smooth_curve(points, factor = 0.9):
    smoothed_points = []
    for point in points:
        if smoothed_points:
            previous = smoothed_points[-1]
            smoothed_points.append(previous * factor + point * (1 - factor))
        else:
            smoothed_points.append(point)
    return smoothed_points

 

平滑曲线

标签:col   cto   style   app   return   ret   else   point   actor   

原文地址:https://www.cnblogs.com/wbloger/p/10217542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!