-
A matlab code or FDTD simulation of anti
A matlab code or FDTD simulation of anti-podal patch
- 2022-03-20 18:38:29下载
- 积分:1
-
本人正需要用MSP430F149实现多种滤波功能。这是一些参考资料和程序代码,均为txt文档,希望有共同爱好者可以参看。...
本人正需要用MSP430F149实现多种滤波功能。这是一些参考资料和程序代码,均为txt文档,希望有共同爱好者可以参看。-I now need to achieve a variety of filtering MSP430F149. These are reference materials and program code, both txt document, want to have a common fans can see.
- 2022-04-28 00:23:58下载
- 积分:1
-
matlab的说明书,可以初学者用,很少见的齐全篇
matlab的说明书,可以初学者用,很少见的齐全篇-matlab
- 2022-02-01 04:38:39下载
- 积分:1
-
amr是一种优秀的变速率语音编码技术,这篇文档介绍了amr中用到的两种帧结构。...
amr是一种优秀的变速率语音编码技术,这篇文档介绍了amr中用到的两种帧结构。-amr is outstanding variable-rate speech coding technology, This document describes the amr which use the two frame structure.
- 2023-05-19 12:30:02下载
- 积分:1
-
tcp server code
tcp server code-tcp server code................
- 2022-02-26 07:45:54下载
- 积分:1
-
四川大学计算机图形学2007
四川大学计算机图形学2007-2008试卷-cs.edu.cn
- 2022-03-13 06:59:39下载
- 积分:1
-
结合FAT,对u盘文件系统进行了较详细的分析,看了后相信你会有不少的收获。
结合FAT,对u盘文件系统进行了较详细的分析,看了后相信你会有不少的收获。-Combination of FAT, disk file system for u to carry out a more detailed analysis, I believe you will be after reading a lot of harvest.
- 2022-07-23 21:48:33下载
- 积分:1
-
PC104 bus specification v2_5.pdf, very good ~
PC104总线规范v2_5.pdf,very good~-PC104 bus specification v2_5.pdf, very good ~
- 2022-06-12 13:45:39下载
- 积分:1
-
Simple FTP Upload,实现ftp上传功能
Simple FTP Upload,实现ftp上传功能-Simple FTP Upload, realize ftp upload feature
- 2022-08-07 18:13:40下载
- 积分:1
-
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返...
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返回有效的实际值 */
#define A 10
char value
char filter()
{
char new_value
new_value = get_ad()
if ( ( new_value - value > A ) || ( value - new_value > A )
return value
return new_value
}
2、中位值滤波法
/* N值可根据实际情况调整
排序采用冒泡法*/-10 kinds of software filtering method one example of the procedure, limit the Deputy filter/* A value can be adjusted according to the actual value for the RMS, new_value filter for the current sampling procedures for the effective return of the actual value* /# define A 10 char value char filter () (char new_value new_value = get_ad () if ((new_value- value> A) | | (value- new_value> A) return value return new_value ) 2, the median filtering method/* N values can be adjust the actual situation in the use of bubble sort method* /
- 2023-08-29 16:45:03下载
- 积分:1