软件层面的滤波
1 /* 2 @brief: 一阶低通滤波算法, Yn = (1-a)Yn-1 + aXn; 3 y = A * y_1 + C * x_1; 其中y_1是上次滤波值,x是本次采样值 4 @para: last_filter:上次滤波值 5 last_sample:上次采样值 6 new_sample:本次采样值 7 @return: 新的滤波值 8 9 */ 10 unsigned int One_Order_LPF(unsigned int last_filter,unsigned int new_sample) 11 { 12 unsigned int result = 0; 13 unsigned long long temp = (last_filter * 35 + new_sample * 65) / 100; 14 result = (unsigned int)temp; 16 return result; 17 }
标签:last,int,滤波,unsigned,一阶低,sample,通滤波 From: https://www.cnblogs.com/njit-sam/p/18036100