资源列表
页面置换算法
- 页面置换算法 用于页面置换方面的算法,对于计算机算法的研究对初学者很有帮助-The arithmetic of page replacement,arithmetic used to the replacement,it is useful for the beginer of computer arithmetic.
拉格朗~1
- 数值分析课程上机 拉格朗日插值多项式 插值多项式存在唯一性 在次数不超过N的多项式集合Hn中 满足条件的插值多项式Ln(x)^Hn 是唯一存在的! 牛顿插值 三色~-numerical analysis courses on the plane Lagrange polynomial interpolation polynomial interpolation existence and uniqueness to the number not exceeding N polynomial Hn
m_cov_cul01_module
- 该程序用以对PSK程序的调制解调的仿真,用FFT算法对其解调-procedures for the process of PSK modulation and demodulation of the simulation, using FFT algorithm demodulation
Littlealarmclock
- 这是我用VB做的小闹钟,它能实现和钟表一样的功能,给大家看看,也帮我改改,谢谢!-This is what I do with VB small alarm clocks, and watches it can achieve the same function, for everyone to see, also helped me changed, thank you!
mimo
- mimo simulation with matlab
VB-electronic-scales
- 编写VB程序来访问串口,达到读取电子秤上显示的数据-Write VB program to access the serial port, to read the data displayed on electronic scales
moshishibie14
- 模式识别的第14章例子程序,主要讲的是模式识别的特征及确定-Pattern Recognition Chapter 14 example programs, describes the characteristics and to determine the pattern recognition
Train
- 栈混洗。对于一组1—n的任意组合的数字,判断其是不是栈{1、2...n}的一个可能栈混洗序列-Stack shuffling. For any combination of a set of numbers 1-n, it is determined which is not the stack {1,2 ... n} is a sequence shuffling may stack
draw-all-pictures
- 该文件在获取文件目录的基础上,实现文件读取和批量绘图,并将绘制图片保存在某个目录下,可以实现几千个图文件的生成和批量查阅。-On the basis of the file to get the file directory on the realization of the batch file reads and drawing, and draw a picture stored in a directory, you can achieve generate thousands of d
dendrite
- 枝晶长大过程的相场模拟,fortran 语言-dendrite phase field method ,fortran
wrfdomain_to_kml.py
- translate WRF namelist.wps to domain kml
Main
- 给出 n 条线段(数轴上的整点线段),对于在其中选择 k 条的所有方案,求选中线段的交线段包含的整点数目的和。答案取模 1e9+7。 http://codeforces.com/problemset/problem/689/E n 条线段相互交叉,形成了多个小线段。计算每个小线段被多少给出的线段包含。例如一个长 5 的小线段被 9 个线段包含,而题目要求选择 3 个区间,那麽这个小区间对答案的贡献就是 5 × pascal(9, 3)。 说起来容易,写起来还是值得学