-
campus network coding design ~ ~ from the entire campus to design the layout of...
校园网络编码设计方案~~是从整个校园的布局来设计的-campus network coding design ~ ~ from the entire campus to design the layout of the
- 2022-10-27 00:25:03下载
- 积分:1
-
prim minimum spanning tree algorithm tectonic map of the network or matrix and a...
普里姆构造最小生成树算法 图或网的邻接矩阵表示及其上基本算法的实现-prim minimum spanning tree algorithm tectonic map of the network or matrix and adjacency on the realization of basic algorithm
- 2023-02-02 08:40:04下载
- 积分:1
-
pcb related words. professional and accuracy.
pcb related words. professional and accuracy.
- 2022-03-13 15:24:31下载
- 积分:1
-
可做课程设计参考使用
可做课程设计参考使用-do curriculum design reference
- 2022-02-06 22:56:11下载
- 积分:1
-
CORDIC算法
CORDIC算法的过程讲解文档比较详细,可以参看-CORDIC-jd
- 2022-05-04 23:30:41下载
- 积分:1
-
主要是一个3D引擎 对3D开发很有帮助
主要是一个3D引擎 对3D开发很有帮助-Is primarily a 3D engine for the 3D development of helpful
- 2023-01-27 02:50:03下载
- 积分:1
-
Md5 checksum algorithm used to protect documents that popular, that is, in order...
Md5校验和算法用于保护流行的文档,即为了保证数据的完整性,使用指定的算法对原始数据进行校验和计算。接收器使用相同的算法来计算校验和值,如果和作为数据提供的校验和相同,则说明数据是不完整的。
- 2023-03-30 22:45:03下载
- 积分:1
-
testtesttest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
- 2022-05-20 09:49:23下载
- 积分:1
-
4 reports the experimental data structure, content or subject of the experiment...
数据结构实验4报告,实验内容或题目
l、随机产生n=100,200,300,1000,2000个整数并存于数组r[1..n]中。对主要查找算法(顺序查找、插入排序、冒泡排序、堆排序、快速排序)进行实验比较,计算出平均比较次数、平均移动次数及执行时间。由程序自动计算,由手工计时。
2、对实验结果数据进行对比分析。
主要内容是-4 reports the experimental data structure, content or subject of the experiment l, randomly generated integers n = 100,200,300,1000,2000 co-exist in the array r [1 .. n] in. On the main search algorithm (the order of search, Insertion Sort, Bubble Sort, Heap Sort, Quick Sort) for the comparison, the calculated average number of comparison, the average mobile number and execution time. Automatically calculated by the procedure by manual timing. 2, the experimental results the data were analyzed. Main content
- 2022-02-21 15:58:11下载
- 积分: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