-
这是一个描述秒表的功能程序,希望大家尽情的享用哦!
这是一个描述秒表的功能程序,希望大家尽情的享用哦!
-This is a description of the function stopwatch program, hope that we enjoy to enjoy Oh!
- 2022-06-21 05:12:26下载
- 积分:1
-
9DOF_IMU_arduino
i2c.pde
adc.pde
9dof.pde
- 2022-01-27 13:18:38下载
- 积分:1
-
学习MATLAB入门的有效途径,对学习新手很有帮助。欢迎下载。...
学习MATLAB入门的有效途径,对学习新手很有帮助。欢迎下载。-learning portal, is an effective way to learn useful novice. Welcome to download.
- 2022-07-07 22:06:05下载
- 积分:1
-
一篇全面介绍MIMO的经典文章。推荐入门者下载
一篇全面介绍MIMO的经典文章。推荐入门者下载-MIMO a comprehensive presentation of the classic articles. Download recommend beginners
- 2022-07-07 16:54:44下载
- 积分:1
-
实用程序来搜索被复制的文本文件
当你运行该程序的用户打开之前包含字段输入所需的目录,找到重复的文本文件的主窗口。还有一个按钮,点击后可以选择从目录树中的目录。然后,用户可以选择它参考搜索所有嵌套目录和使用多个线程的选项。下一步骤,用户可以选择通过该检索所需要的散列:MD5或SHA1。点击“开始搜索”开始搜索重复文件。在“错误列表I / O”显示在搜索过程中发生的所有错误。在主要领域都显示了哈希组分组发现重复的文本文件。当你右键单击找到的文件,用户可以打开其中,该文件所在的目录,或挤压它打开来查看。过程和函数browseBut_Click Selecting a directory
- 2022-07-19 21:59:31下载
- 积分:1
-
对决策树的ppt文章,希望对大家有帮住,希望大家喜欢
对决策树的ppt文章,希望对大家有帮住,希望大家喜欢-right decision tree ppt article, and I hope to help you live, hope you like
- 2022-01-26 02:18:00下载
- 积分:1
-
关于图像的二值化三种算法程序,实现图像的二值化
关于图像的二值化三种算法程序,实现图像的二值化-With regard to the image binarization process three kinds of algorithms to achieve the image binarization
- 2022-05-17 16:43:24下载
- 积分:1
-
IEEE 802.16 CTC Encoder and Decoder test documentation (encoders, decoders direc...
IEEE 802.16 CTC Encoder and Decoder测试说明文档(编码器、解码器直接相连;编码器输出经过AWGN信道,输入解码器解码;误码率的测试)-IEEE 802.16 CTC Encoder and Decoder test documentation (encoders, decoders directly connected the output of encoder go through the AWGN channel, then decoder decoding bit error rate test)
- 2022-03-09 09:08:08下载
- 积分:1
-
武汉大学 朱庆教授主讲的DTM的PPT希望对大家有帮助。
武汉大学 朱庆教授主讲的DTM的PPT希望对大家有帮助。-Wuhan University Professor Zhu Qing topics of the PPT DTM hope to be helpful.
- 2023-05-03 06:15:07下载
- 积分: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