IP网的QoS技术研究,介绍了排队类型,等待时延等。
上传时间: 2015-03-12
上传用户:talenthn
jitterbug是基于matlab的工具箱,允许对在不同的时域条件下的线性系统的二次性能指标计算。用这个工具箱,可以很容易看出系统对时延、jitter和数据丢失等的响应。
上传时间: 2014-07-23
上传用户:qq521
补零离散傅立叶变换,高密度谱与高分辨谱的比较。
上传时间: 2014-01-26
上传用户:372825274
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
有用的软件,用于高阶统计量计算。代码完整,计算效率高。
标签: 软件
上传时间: 2013-12-08
上传用户:6546544
作业Burg算法,用于数字信号处理中功率谱估计,简单实用。
上传时间: 2015-05-10
上传用户:许小华
Strassn关于两个矩阵相乘的算法,同过分治原理把两个n*n的矩阵阶各分解成四个n/2*n/2阶的矩阵,当分解出来的矩阵阶数等于2时,求借各个小矩阵,若阶数大与2,就递归的调用前面方法,直到分解成2*2的子矩阵为止。
上传时间: 2015-05-21
上传用户:lz4v4
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
多址干扰一直是造成cdma系统容量限制的重要原因,本程序主要模拟了多址干扰对每个用户的影响以及把多址干扰作为高斯白噪声看待时对用户的影响
上传时间: 2014-01-05
上传用户:Amygdala
STL源码剖析,详细讲解stl的源码,使你知其然,知其所以然,它是stl的高阶图书,适合于有一定基础的读者
上传时间: 2013-12-15
上传用户:dengzb84