-
中国人民银行技术类笔试题目集,希望对找工作的人有用。
中国人民银行技术类笔试题目集,希望对找工作的人有用。-People" s Bank of technical topics written set of classes, in the hope to find people who work useful.
- 2022-08-16 08:20:46下载
- 积分:1
-
微机原理课程讲义。。。。
包括课后习题及答案
微机原理课程讲义。。。。
包括课后习题及答案-Microcomputer Principle Course Training Manual. . . . Including after-school exercises and answers
- 2022-05-18 11:55:14下载
- 积分:1
-
作为一个程序员,很重要的一点是要写出漂亮的代码,同时也便于后期维护,因此,需要有良好的编程规范。这个里面就是C++编程规范,可以作为参考
作为一个程序员,很重要的一点是要写出漂亮的代码,同时也便于后期维护,因此,需要有良好的编程规范。这个里面就是C++编程规范,可以作为参考-As a programmer, it is important to write good code, but also facilitate the maintenance of the latter, therefore, need to have good programming norms. The inside is C++ Programming specifications can be used as reference
- 2022-03-24 15:52:15下载
- 积分:1
-
This is information in4148, I hope you can be used for useful
这是in4148的资料,希望你有用可以用上
-This is information in4148, I hope you can be used for useful
- 2023-05-10 17:45:03下载
- 积分:1
-
This is just a bitmap image to activate my account
This just a bitmap image to activate my account
-This is just a bitmap image to activate my account
- 2023-02-03 02:40:03下载
- 积分:1
-
vb程序设计常用算法
算法分析用vb实现
vb程序设计常用算法
算法分析用vb实现-vb programming algorithm analysis algorithm used to achieve vb
- 2023-06-08 13:30:04下载
- 积分:1
-
凯撒加密算法C语言实现,代码量比较大,比较繁琐,希望大家能给出更好的代码...
凯撒加密算法C语言实现,代码量比较大,比较繁琐,希望大家能给出更好的代码-Caesar encryption algorithm C language, code than the larger, more cumbersome, I hope everyone can give a better code
- 2022-08-17 23:33:36下载
- 积分: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
-
This document is the National Model Competition in 2006 titled A good thesis
此文件2006年全国建模大赛A题的优秀论文-This document is the National Model Competition in 2006 titled A good thesis
- 2022-03-17 14:02: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