C#实现 matlab smooth 的移动平滑滤波
文件大小: 54k
源码售价: 10 个金币 积分规则     积分充值
资源说明:C# 实现 yy = smooth(y) smooths the data in the column vector y using a moving average filter. Results are returned in the column vector yy. The default span for the moving average is 5. The first few elements of yy are given by yy(1) = y(1) yy(2) = (y(1) + y(2) + y(3))/3 yy(3) = (y(1) + y(2) + y(3) + y(4) + y(5))/5 yy(4) = (y(2) + y(3) + y(4) + y(5) + y(6))/5
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。