- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
ad数据采集数字滤波(Ad data acquisition digital filter)
ad数据采集数字滤波(Ad data acquisition digital filter)
AD data acquisition digital filter
1 、 limited sub filter
/ * A value can be adjusted according to the actual situation
Value is a valid value, and new_value is the current sample value
Filtering procedure returns a valid actual value.
#define A 10
Char value;
Char, filter ()
{
Char new_value;
New_value = get_ad ();
If (new_value - A (value) || (value - new_value A)
Return value;
Return new_value;
}
2 median filtering
/ * N value can be adjusted according to the actual situation
The method of bubble sort.
#define N 11
Char, filter ()
{
Char value_buf[N];
Char, count, I, J, temp;
For (count=0; countN; count++)
{
Value_buf[count] = get_ad ();
Delay ();
}
For (j=0; jN-1; j++)
{
For (i=0; iN-j; i++)
{
If (value_bufvalue_buf[i+1])
{
Temp = value_buf;
Value_buf = value_buf[i+1];
Value_buf[i+1] = temp;
}
}
}
Return value_buf[(N-1) /2];
}
3 arithmetic average filtering method
*
* /
#define N 12
Char, filter ()
{
Int sum = 0;
For (count=0; countN; count++)
{
Sum + = get_ad ();
Delay ();
}
Return (char) (sum/N);
}
4, recursive mean filtering (also known as moving average filtering)
*
* /
#define N 12
Char value_buf[N];
Char i=0;
Char, filter ()
{
Char count;
Int sum=0;
Value_buf[i++] = get_ad ();
If (I = = N) I = 0;
For (count=0, countN, count++)
Sum = value_buf[count];
Return (char) (sum/N);
}
5, median value average filtering method (also called anti pulse interference average filtering method)
*
* /
#define N 12
Char, filter ()
{
Char, count, I, j;
Char value_buf[N];
Int sum=0;
For (count=0; countN; count++)
{
Value_buf[count] = get_ad ();
Delay ();
}
For (j=0; jN-1; j++)
{
For (i=0; iN-j; i++)
{
If (value_bufvalue_buf[i+1])
{
Temp = value_buf;
Value_buf = value_buf[i+1];
Value_buf[i+1] = temp;
}
}
}
For (count=1; countN-1; count++)
Sum = value[count];
Return (char) (sum/ (N-2));
}
6, limited average filtering method
*
* /
Reference subroutine 1, 3
7 、 first order lag filtering method
In order to speed up the processing spee
您可能关注的文档
- 2014年9月份考试社会学概论第二次作业(In 2014 September, examination sociology introduction second homework).doc
- 2014年excel 2007 中文电子表格考试大纲(2014 Excel 2007 Chinese electronic form examination outline).doc
- 2014年中报业绩预增股一览(2014-05-04 203421)转载▼ 分类 板块分类 文档(The 2014 report forecasted stock list (2014-05-04 203421) reprint classification classification document print plate).doc
- 2014年临床医学检验技术(师)知识点(Knowledge of Clinical Laboratory Technology (Division) in 2014).doc
- 2014年二级建造师考试大纲的变化(Changes in the syllabus for the two division builders in 2014).doc
- 2014年复试大纲(2014 re examination outline).doc
- 2014年嘉兴电大秋季入学考试语文参考资料(Reference materials for autumn admission test of Jiaxing TV University in 2014).doc
- 2014年安全知识考(Safety knowledge in 2014).doc
- 2014年广西柳州市中考物理试题及答案(Physics examination questions and answers in Guangxi, Liuzhou in 2014).doc
- 2014年思想汇报(2014 ideological Report).doc
- a1真题02(A1 02).doc
- ae特效翻译(AE effects translation).doc
- ad模块常用器件(Ad module common device).doc
- ajax无刷新实现图片切换特效(Ajax no refresh to achieve picture switching effects).doc
- allegro心得体会(Allegro experience).doc
- ali213(ali213).doc
- altium designer 的元件对应英文名(The components of Altium designer correspond to English names).doc
- amt咨询六步法助推企业流程绩效管理(AMT Consulting a six step approach to enterprise process performance management).doc
- andriod sdk开发范例大全2目录(2目录开发范例大全Andriod SDK).doc
- android 4.0平板抢先体验 全新ui设计(安卓4.0平板抢先体验全新UI设计).doc
文档评论(0)