-
Detail the functions of various semiconductor devices, structure and use! Xi'...
详细介绍各种半导体器件的功能,构造和用途!西安交大的教学课件!-Detail the functions of various semiconductor devices, structure and use! Xi" an Jiaotong University Courseware!
- 2022-02-12 21:21:39下载
- 积分:1
-
With the data structure (C language version) to write programs to achieve a ches...
用数据结构(C语言版)编写程序,实现一个国际象棋的马踏遍棋盘的演示程序。具体要求为:将马随机放在国际象棋的8*8棋盘的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。用堆栈编制非递归程序求出马的行走路线,并按求出的行走路线,将数字1,2,3,……,64依次填入一个8*8的方阵,输出之。 -With the data structure (C language version) to write programs to achieve a chess board horse travels to the demonstration program. Specific requirements are: the horses were randomly placed in the 8* 8 chess board in a box, Ma according to the rules of chess to go mobile. Requires that each box is only entered once, traveled all the 64 squares on a chessboard. The preparation of non-recursive procedure with the stack order to run for walking routes, and then find the routes will be the number 1,2,3, ... ..., 64 in turn fill in an 8* 8 matrix, the output of.
- 2022-12-11 22:25:03下载
- 积分:1
-
S3c44b0开发板的原理图,可以用来参考设计pcb板
S3c44b0开发板的原理图,可以用来参考设计pcb板-S3C44B0 development board schematics, can be used to reference design pcb board
- 2022-01-21 03:07:27下载
- 积分:1
-
中青世纪资料手册。里面包括各个语音系列芯片的详细介绍和编程资料...
中青世纪资料手册。里面包括各个语音系列芯片的详细介绍和编程资料-Information Manual Zhongqing century. Which include various voice chips detailed introduction and programming information
- 2022-02-27 08:22:18下载
- 积分: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
-
蚁群算法基本原理,改进蚁群算法等的详尽资料,很全面!
蚁群算法基本原理,改进蚁群算法等的详尽资料,很全面!-The basic principles of ant colony algorithm to improve the ant colony algorithm, such as detailed information, very comprehensive!
- 2022-03-03 05:37:46下载
- 积分:1
-
移动adhoc网络路由协议, 关于olsr路由协议的一篇论文
移动adhoc网络路由协议, 关于olsr路由协议的一篇论文
- 2022-06-20 03:52:20下载
- 积分:1
-
ARM开发软件,使用教程。包括各种软件使用方法。
ARM开发软件,使用教程。包括各种软件使用方法。-ARM development software, the use of tutorials. Include a variety of software to use.
- 2022-01-21 20:50:21下载
- 积分:1
-
是学语言的课程设计,好象是查找或是迷宫
是学语言的课程设计,好象是查找或是迷宫
-Is the school language curriculum design, as if the maze is to find or
- 2022-06-15 18:28:54下载
- 积分: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