资源列表
sins
- 惯导解算,采用二子样算法,补偿了旋转误差以及划桨误差。-INS Solution
ffddfdf
- 模拟按键模块,很不错的易语言模块,易爱好者可以下载使用-Analog key modules, very good and easy language modules, fans can download and easy to use
the-FFT-transform-procedures
- 打印出用C语言编写的FFT源程序,并且在每一小段处加上详细的注释说明。 用C语言编写FFT编写程序时,要求采用人机界面形式: -Print out the C language prepared by the FFT source code, and in each segment is coupled with detailed notes.Using C language FFT programming, requires a form of man-machine interfac
stochastic-competition-model
- stochastic competition model
1_2
- 完成mynspace的定义,并在main函数中写出完整程序,演示函数功能,先将用户输入的数组进行从大到小的排序,然后利用指针对重复出现的数组元素进行次数计算,然后再比较把众数的次数找出,然后输出结果 -Complete definition of mynspace , and write a complete program in the main function , demo function function , the first user input array to sort f
Menu-selection-procedure
- 使用菜单选择程序 [问题描述] 菜单是应用程序的界面,控制语句用来改变程序执行的顺序,是实现结构化程序设计的基础。设计一个比较实用的菜单,通过菜单选择不同的功能。 设计分为两步:首先设计一个含有多个菜单项的菜单演示程序,然后再为这些菜单项配上相应的功能。 [基本要求] 程序运行后,给出6个菜单项的内容和输入提示。 使用数字1-6来选择菜单项,其他输人则不起作用。 1. 功能要求(包括输入、输出、精度等方面的要求): 2. 运行环境要求: -Use the menu
Si4432
- 无线射频433M通讯程序,主要芯片是si4432-Wireless RF 433M communication procedures, the main chip is si4432
backtrack_queens
- 使用纯回溯法求解八皇后问题,按行放置皇后,如果未发现可行位置,后退一行,继续搜索-Use plain backtracking to solve the eight queens problem, row placed Queen, If you do not find a viable position, retreat and his entourage continue search
mySet
- 实现集合的交集与并集,集合的输入以*结束,集合只接收小写字母,结果只有小写字母-The intersection of the collection and set input of the collection to* the end of a collection of lowercase letters only receive results only lowercase letters
P2PJIEMA
- 基于verilog的P2P解码\\\\\\\实验-The based on verilog P2P decoding \ \ \ \ \ \ \ experimental
Huffman
- 哈弗曼编码,构造哈夫曼树,构造哈夫曼树非常简单,将所有的节点放到一个队列中,用一个节点替换两个频率最低的节点,新节点的频率就是这两个节点的频率之和。这样,新节点就是两个被替换节点的父节点了。如此循环,直到队列中只剩一个节点(树根)。-Hoffman coding, Huffman tree structure, Huffman tree structure is very simple, all the nodes in a queue, replace the two lowest frequ
Gaussian_Sequence
- 极坐标方法产生高斯白噪声 产生N(0,1)高斯白噪声序列,最常见的方法是极坐标法,其计算步骤如下所示: (1) 产生两个独立同分布的随机序列(0,1),U1,U2; (2) 令V1=2U1-1;V2=2U2-1;并计算S=V1^2+V2^2 (3) 若S>1,则返回第一步;否则计算Y=sqrt(-2*ln(S)/S) (4) 令实部I=V1*Y,虚部Q=V2*Y,再求Output=I+Q*i,即可得到随机复数高斯白噪声序列。 理论上,可证明上述产生的I、Q两路序