搜索资源列表
奇数平方的一个有趣性质
- 平方的一个有趣性质 编程验证“大于1000的奇数其平方与1的差是8的倍数”。 *问题分析与算法设计 本题是一个很容易证明的数学定理,我们可以编写程序验证 它。 题目中给出的处理过程很清楚,算法不需要特殊设计。可以 按照题目的叙述直接进行验证(程序中仅验证到3000)。-square interesting nature of a certification program "more than 1,000 of its odd square o
genCRC32
- 本程序是使用Vc++6.0开发的用于计算机系通信理论课程的CRC32编码器模拟程序,它能模拟直接计算法和余式计算法,算法明晰。-this procedure is the use of Vitamin C 6.0 for the development of computer-communication theory courses CRC encoder simulation program, it can direct simulation calculation and computati
Pronynalysis
- Prony分析是获取系统振荡模式特征的一种非常有效的方法,它可以通过给定输入信号下的响应直接估计系统的振荡频率、衰减、幅值和初相位。本文基于Prony算法提出一种用振荡模式能量级鉴别电力系统大干扰下主导低频振荡模式的方法。-Prony analysis acquisition system oscillation mode features a very effective way, It can set the input signal to the estimated direct resp
my-sort
- 内部排序算法比较,6种常用的内部排序算法进行实测比较:一趟冒泡排序、简单选择排序、快速排序、希尔排序、直接插入排序、堆排序。-internal sorting algorithm, six kinds of internal sorting algorithm measured comparison : Bubble Sort trip, Sort simple choice, quick sort, Hill, ranked direct insertion sort, heap sort.
Graph-Drawing-by-Force-directed
- 这是关于force-direct算法的可视化方向的论文,主要为了使得画布中的各点分布均匀,弹簧与戒指模型说得很不错。-This is about the force-direct visualization of the algorithm the direction of the paper, the main canvas in order to make the points evenly distributed spring model very well with the ring.
patition
- 利用直接选择排序与快速排序结合的排序算法 效率很高 BCB编写 界面清晰易懂-The use of direct selection sort with the Quicksort sorting algorithm is highly effective combination of BCB to prepare clear and easy to understand interface
cipandiaodu
- 磁盘调度算法也是操作系统中比较重要的一环,磁盘调度的好坏直接影响到运行速度的快慢-Operating system disk scheduling algorithm is also the more important part, disk scheduling a direct impact on the pace of running
MD5
- MD5的delphi算法源程序。直接引用单元即可以使用。-The delphi MD5 algorithm source code. Direct reference to the unit that can be used.
yemiangenhuansuanfa
- 页面更换算法是虚拟存储器中的重要话题。页面更换算法的好坏直接影响虚拟存储器的效率,从而影响计算机系统的整体效率-Virtual memory page replacement algorithm is an important topic. Page replacement algorithm will have a direct impact on the efficiency of virtual memory, thus affecting the overall efficiency o
mylms
- 典型的LMS算法,简短明了直接,在很多方面都会用到。-Typical lms algorithm , a brief and clear and direct , are used in many ways .
rejectionofnbibaseonwaveletpacket
- 为了进一步提高直接序列/跳频(DS/FH)扩频系统的抗干扰能力,基于小波包变换结合递归最小二乘算法设计 了一种变换域自适应干扰抑制算法,该算法采用小波包分解定位窄带干扰,递归最小二乘算法抑制窄带干扰。通过蒙特卡 罗仿真分析在增加抗干扰模块后,DS/FH系统工作在准静态时,在不同信噪比条件下抗窄带干扰性能。仿真结果表明:该 算法具有较强的自适应性以及抗窄带干扰能力,其性能优于传统的直接置零法,适用于多音干扰下的恶劣通信环境。-In order to further improve th
sprc144
- TI 240x DSP 串口编程算法,无须仿真器及编程器,直接采用串口下载flash程序-TI 240x DSP serial programming algorithm, without the emulator and programmer, direct serial download flash program
3d4c8def245a
- 算法流程 1.将要处理的二进制串进行IP置换 2.将密钥进行PC1置换(64位转为56位), 3.进行16轮操作,对于第i轮操作: 1)将上一次得到的PC1密钥(级除去第一次外,其他的都经过移位处理)的结果左右部分(各28位)分别循环左移1位或2位,然后将移位后的密钥进行PC2[i]置换. 2)将处理串均等分为左右两串Li,Ri(各32位),然后将右串Ri通过E盒拓展为新的右串R (48位),R 与上一步得到的PC2[i]子密钥进行异或
vrp
- 用matlab解决vrp问题,本程序为遗传算法解决基本VRP问题的例程。各供货点距离矩阵及遗传算法参数在VRP.M中给出。以路径长度作为遗传算法的适应度函数,约束函数通过在LEN中增加惩罚因子体现,本程序简便起见将不满足约束的直接加100;-Vrp matlab to solve the problem with the program for the genetic algorithm to solve the basic problem VRP routines. The delivery
psomatlabchengxu
- 粒子群算法的matlab程序,简单实用。直接出图形和结果-PSO algorithm matlab procedures, simple and practical. Direct result of graphics and
BKSA_BSS
- 一种新的基于峰度的盲源分离开关算法(附参考文章),无需假设源信号的概率密度函数, 可直接对独立分量分析中的激活函数进行自适应学习。-A New kurtosis switching algorithm for blind source separation (with reference to the article), without assuming that the probability density function of the source signal, independent
paixu
- 对于直接插入排序、直接选择排序、冒泡排序、shell排序、快速排序、堆排序和归并排序等算法进行上机实现-For direct insertion sort, selection sort, bubble sort, Shell sort, quick sort, heap sort and merge sort algorithm to achieve
operator-precedence-parser
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 可以构造算符优先表如下: + * ( ) i + * ( ) i 2、计算机中表示上述优先关系,优先关系的机内存放方式有两种1)直接存放,2)为优先关系建立优先函数,这里由学生自己选择一种方式; 3、给出算符优先分析算法如下: k:=1 S[k]:=‘#’ REP
K-proximity-algorithm
- 机器学习K临近算法python代码,整个工程都有,直接可以运行。-Machine learning algorithm K near the python code, the entire project has a direct run.
第一章
- 本文件用于矩阵分解的直接算法,针对徐树方老师的《数值线性代数》课后第一章练习题(This document is used for matrix decomposition of the direct algorithm, for teacher Xu Shufang's "Numerical Linear Algebra" after the first chapter exercises)
