-
一个sql语句用法的完全手册,一定会让你收益
一个sql语句用法的完全手册,一定会让你收益-a sql statement usage of the complete manual, we will allow you to return!
- 2022-05-16 04:45:31下载
- 积分:1
-
ESRI公司ArcInfo的Shape文件格式介绍
ESRI公司ArcInfo的Shape文件格式介绍-the ESRI ArcInfo Shape file format introduced
- 2022-02-11 15:48:56下载
- 积分:1
-
AT89C2051中文技术资料,包括详细的引脚解释,用法,和编程注意事项。对初学单片机的人很有用的...
AT89C2051中文技术资料,包括详细的引脚解释,用法,和编程注意事项。对初学单片机的人很有用的-AT89C2051 Chinese technical information, including a detailed explanation of the pin, usage, and programming tips. For beginners who SCM very useful
- 2023-08-23 18:25:03下载
- 积分:1
-
face recognition ieee papers
face recognition ieee papers
- 2022-08-20 09:34:13下载
- 积分:1
-
JAVA压缩技术可能有些小错误不是本人写的
JAVA压缩技术可能有些小错误不是本人写的-Java compression technology may be some minor errors than I write
- 2022-04-15 15:29:21下载
- 积分:1
-
多
多目标遗传算法源码,包含遗传算法的各个步骤,适合于研究多目标优化的朋友-Multi-objective genetic algorithm source code, including the various steps of genetic algorithm, suited to study multi-objective optimization of Friend
- 2022-02-22 07:07:32下载
- 积分:1
-
学习网页设计的好东西,一些讲座PPT和网页制作的方法。
学习网页设计的好东西,一些讲座PPT和网页制作的方法。-Learning Web Design a good thing, a number of seminars and web pages produced by PPT method.
- 2022-02-10 13:18:39下载
- 积分:1
-
本文分别深入讨论了C++与Java的异常处理机制。比较了C++与Java的异常匹配处理,异常类继承体系与异常处理代码的区别,并且讨论了异常对象的生存周期与存储方...
本文分别深入讨论了C++与Java的异常处理机制。比较了C++与Java的异常匹配处理,异常类继承体系与异常处理代码的区别,并且讨论了异常对象的生存周期与存储方式。最后,在其基础上构想了异常处理机制的发展方向。 -In this paper, in-depth discussion of the C++ and Java exception handling mechanism. Comparison of C++ and Java exceptions match the handling, exception class inheritance system and the difference between exception handling code, and discussed the life cycle with the exception object is stored. Finally, based on the idea of exception handling mechanism of development direction.
- 2022-05-30 23:17:03下载
- 积分:1
-
详细介绍小波变换的定义、特点及性质、小波反变换及小波容许条件等基础理论知识...
详细介绍小波变换的定义、特点及性质、小波反变换及小波容许条件等基础理论知识-Detail the definition of wavelet transform, characteristics and nature of anti-wavelet transform and wavelet basis to allow conditions such as theoretical knowledge
- 2023-04-28 14:35:03下载
- 积分: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