資源簡介
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
代碼片段和文件信息
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????55467??2020-03-11?10:02??C#實現?matlab?smooth?的移動平滑濾波.rtf
-----------?---------??----------?-----??----
?????文件???????55467??2020-03-11?10:02??C#實現?matlab?smooth?的移動平滑濾波.rtf
評論
共有 條評論