-
ti超低功耗单片机msp430比较器模块
ti超低功耗单片机msp430比较器模块-ti comparison MSP430 ultra-low power single-chip module
- 2022-01-31 18:44:50下载
- 积分:1
-
This is the result after finishing the Deer and the Cauldron. Please download an...
这是经过整理后的鹿鼎记。请大家下载和参考。-This is the result after finishing the Deer and the Cauldron. Please download and reference.
- 2022-05-29 06:35:13下载
- 积分:1
-
吉林大学的 dsp ppt教程,适合初学习dsp的人。
吉林大学的 dsp ppt教程,适合初学习dsp的人。-Jilin University of dsp ppt tutorials, suitable for early learning dsp people.
- 2023-07-09 14:50:13下载
- 积分:1
-
这是一个关于如何使用版本控制的版本控制文档。
This is a version control document on how to use version control.
- 2022-03-09 22:35:46下载
- 积分:1
-
Labview based on the literature, which contains four examples, very suitable for...
关于labview的基础文献,其中包含四个例子,非常适合初学者-Labview based on the literature, which contains four examples, very suitable for beginners
- 2022-02-12 09:01:11下载
- 积分:1
-
VC中文件的读写
VC中文件的读写-VC document reader
- 2022-08-02 21:13:44下载
- 积分:1
-
ARM9 在电力终端中的应用及技术解决方案
ARM9 在电力终端中的应用及技术解决方案-ARM9 terminal in the power of applications and technology solutions
- 2022-01-22 12:31:23下载
- 积分:1
-
Describes the basics of SVM, including: SVM Getting Started (1) SVM Introduction...
介绍了SVM的基础知识,包括:SVM入门(一)SVM简介;SVM入门(二)线性分类器part1;SVM入门(三)线性分类器part2;SVM入门(四)线性分类器的求解―问题的描述part1;SVM入门(五)线性分类器的求解―问题的描述part2等。-Describes the basics of SVM, including: SVM Getting Started (1) SVM Introduction SVM Getting Started (2) linear classifier part1 SVM Getting Started (3) linear classifier part2 SVM entry (d) the solution of a linear classifier- description of the problem part1 SVM Getting Started (5) the solution of the linear classifier- description of the problem part2 and so on.
- 2023-07-16 07:10:04下载
- 积分:1
-
这种算法在DSP上实现,以及出现的滤波图
这种算法在DSP上实现,以及出现的滤波图-This algorithm is implemented on the DSP, and the emergence of the filtering plan
- 2022-08-17 21:49:52下载
- 积分: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