登录
首页 » Visual C++ » 阻塞率

阻塞率

于 2005-11-05 发布 文件大小:12KB
0 237
下载积分: 1 下载次数: 0

代码说明:

说明:  呼叫阻塞率的计算和仿真:在时间轴上考虑。无论阻塞与否,下一呼叫到达时刻为当前呼叫到达时刻加上服从参数为1/λ的指数分布的呼叫间隔时间。一个呼叫到达时只需要判断呼叫的到达时刻和各个信道服务完成时刻的先后:如果前者比后者中任意一个大,说明至少有一个信道服务完成时刻比此呼叫到达时刻早,即此信道空闲,此时呼叫成功,应该先把此信道下一个服务完成时刻置为当前呼叫到达时刻,再加上服从参数为μ的指数分布的服务时间;反之,如果前者比后者中全部都小,说明所有信道在此呼叫到达后才会结束服务,即当前忙,此呼叫被阻塞掉了(call blocking probability calculation and simulation : the time frame to consider. Whether or not blocked, the next call arrived at the present moment to call time arrived with a subordinate parameters/ index distribution of the call interval. A call arrived only judgment call and the arrival time each channel service has completed a moment : If the former than the latter an arbitrary, and at least one channel is completed service calls than this moment arrived moments earlier, that this channel is idle, call this success, should first get here Channel a moment of complete services for the current call home arrival time, coupled with the parameters obey the exponential distribution services; Conversely, if the former than the latter, all small, with all the Channel call arrived only aft)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • VCPP-MFC-Print
    VC++ 用MFC编写的打印程序,希望对大家有用(VC++ MFC Print)
    2012-05-10 19:48:58下载
    积分:1
  • GshaangqumianP
    GPS导航定位双曲面求解方法,,用了卡尔曼滤波法,改方法实时性高 (GPS navigation and positioning the hyperboloid solving method, using a Kalman filter method, change its method of real-time high)
    2012-09-15 22:26:34下载
    积分:1
  • WSAEventSelect_Test_IO
    关于WSAEventselect模型的使用,这个模型和WSAAsyncselect很相像,但是使用方法还是要注意(About WSAEventselect model used is very similar to the model and WSAAsyncselect, but still have to pay attention to use)
    2010-11-08 17:05:04下载
    积分:1
  • dictionary
    利用Trie树实现一个英语单词辅助记忆系统,完成相应的建表和查表程序(Trie tree using an English word to achieve auxiliary memory system, complete the appropriate procedures for the construction table and look-up table)
    2010-05-05 20:53:32下载
    积分:1
  • hpcv-water-29-oct-2010
    OSG实例,shader编程,实现简单的小溪河流定向移动(OSG , shader programming, achieve a simple directional movement of rivers )
    2020-09-13 17:27:58下载
    积分:1
  • LSGEB
    这是一个吃豆子游戏小程序,费了一番功夫,鼓励一下(This is a small game to eat beans procedures, costs a lot of effort to encourage you)
    2009-06-23 22:25:46下载
    积分:1
  • FileStrongBox
    动态库加密,利用动态库对文件系统进行加密和解密操作,并可以透明加密(Dynamic Library Encryption)
    2011-06-03 16:51:21下载
    积分:1
  • cg-fft
    This software gave volume MoM solution by the CG-FFT method(volume solution by using MoM t he CG-FFT method)
    2007-03-31 10:21:57下载
    积分:1
  • driver
    VC6.0开发,3年前开发的PCI9052接口及测试程序,一定要先安装DriverStudio,如果有相应的接口卡就最好,如果没有也可以看看程序作为参考。(VC6.0 development, three years ago, the development of PCI9052 interface and test procedures, we must first install the DriverStudio, if there is a corresponding interface card on the best, if not also look at programs as a reference.)
    2010-03-11 09:28:46下载
    积分:1
  • GifCodec
    参考网上的资料写的gif编解码。 编码用gdi解析常用图片格式,然后组装成gif 解码吧gif的每一帧转换成dib gif文件格式网上有很多介绍 gif用的变长lzw压缩算法: 没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,后缀作为前缀,前缀对应的字符串添加到输出流,继续取;编码不存在,前缀对应的字符串的第一个字符作为后缀(这时当前字符串肯定不存在,字典中下一个可用编码肯定等于刚取出的编码),字符串添加到字典中,编码作为前缀,前缀对应的字符串添加到输出流,继续取。 编码流转换成字节流是按位从低到高的,window是小端模式(低字节在低地址),字节内低位在右边。 24位dib转换成8位dib时使用的八叉树算法 图片拉伸时参考的网上的双线性插值算法。 字典满了位数加一,位数是12时不加(Online reference materials written gif codec. Encoded using gdi resolve common image formats, and then assembled into a gif Each frame decode it into a gif dib There are many online gif file format introduced gif lzw with variable length compression algorithm: Did not understand the principle, only know the process. Compression takes a character as a suffix, and see if there is a string. Exist as a prefix to continue to take with the corresponding encoding there is no string to add to the dictionary, a prefix added to the output stream, the suffix as a prefix to continue to take. Take a look at extracting coding dictionary exists. Exist with the corresponding first character string as a suffix to see the current string exists, there is no add to the dictionary, the suffix as a prefix, the corresponding string to the output stream, continue to take coding does not exist, prefix corresponding first character string as a suffix (when the current string certainly does not exis)
    2015-01-17 20:22:25下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载