登录
首页 » 通信 » Jakes a good model simulation, is written by a foreigner, from

Jakes a good model simulation, is written by a foreigner, from

于 2023-02-11 发布 文件大小:1,003.00 B
0 195
下载积分: 2 下载次数: 1

代码说明:

一个不错的jakes模型仿真,是老外写的,取自一书-Jakes a good model simulation, is written by a foreigner, from

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

发表评论

0 个回复

  • 用于无线IP互联的高效率网络报头压缩协议。 在3G和4G网络中均会用到。...
    用于无线IP互联的高效率网络报头压缩协议。 在3G和4G网络中均会用到。-RFC 3095 is the robust header compression protocol used in wireless IP transfer, both in 3G and 4G network.
    2022-03-26 03:15:07下载
    积分:1
  • P2P之UDP穿透NAT的原理与实现工程P2P之UDP穿透NAT的原理与实现工程...
    P2P之UDP穿透NAT的原理与实现工程P2P之UDP穿透NAT的原理与实现工程-P2P penetrate NAT of UDP and the realization of the principle of the UDP project P2P penetrate NAT Principle and realization of the project
    2022-01-25 14:25:17下载
    积分:1
  • labview 变频控制485,CRC校验
    labview  变频控制485通信,CRC校验。labview  变频控制485通信,CRC校验
    2023-07-18 07:45:04下载
    积分:1
  • adhoc网络dsr协议的matlab仿真
    Matlab实现Ad Hoc网络的DSR路由协议,30个节点,仿真区域大小100x100,通信范围15,位置随机生成(均匀分布),程序以图的形式输出随机生成的拓扑,输出最终路径选择(在图上以线段连接路径),没有实现RRER功能
    2022-01-21 04:57:59下载
    积分:1
  • REI开发的NeoLauncher现在开源。希望高手继续完善!
    REI开发的NeoLauncher现在开源。希望高手继续完善!-REI is now open source development NeoLauncher. I hope you continue to improve!
    2022-08-21 18:22:11下载
    积分:1
  • 这是包含我自己设计的一个低滤波器和语音号的处理,程序已经过编译和仿真。...
    这是包含我自己设计的一个低通滤波器和语音信号的处理,程序已经通过编译和仿真。-This is my own design with a low-pass filter and speech signal processing, compilation and simulation programs have been adopted.
    2022-05-05 21:27:50下载
    积分:1
  • 息论是由技术、概率论、随机过程和数理统计等相结合逐步发展而形成的一门新兴科学。其奠基人是美国数学家香农,他的《的数学原理》奠定了息论的基础。 这...
    信息论是由通信技术、概率论、随机过程和数理统计等相结合逐步发展而形成的一门新兴科学。其奠基人是美国数学家香农,他的《通信的数学原理》奠定了信息论的基础。 这是信息论与编码技术的教学课件。压缩包内含有6个ppt文件,每个ppt自成一章:1绪论、2信源及其熵、3信道及其容量、4信息率失真函数、5信源编码、6信道编码。是初学信息论的最好材料。-Information communication technology is, probability theory and mathematical statistics, stochastic processes, such as the combination formed by the progressive development of an emerging science. The founders of the United States Shannon mathematician, his " Mathematical Theory of Communication" has laid a foundation of information theory. This is the information theory and coding technology courseware. Compressed packet contains 6 ppt documents, each a separate chapter ppt: 1 Introduction, 2 source and its entropy, and its 3-channel capacity, information rate-distortion function 4, 5, source coding, channel coding 6. Information theory is the best learning materials.
    2022-01-26 06:43:43下载
    积分:1
  • rfc3028:筛:邮件过滤语言
    RFC3028:Sieve:一种邮件过滤语言
    2022-07-01 11:11:20下载
    积分:1
  • 如何计算结构体的大小运算符sizeof可以计算出给定类型的大小,对于32位系统来说,sizeof(char) = 1 sizeof(int) = 4。基本数据类...
    如何计算结构体的大小运算符sizeof可以计算出给定类型的大小,对于32位系统来说,sizeof(char) = 1 sizeof(int) = 4。基本数据类型的大小很好计算,我们来看一下如何计算构造数据类型的大小。 -How to calculate the structure of the size of the sizeof operator can calculate the size of a given type, for a 32-bit systems that, sizeof (char) = 1 sizeof (int) = 4. Basic data types of the size of the fine calculation, we take a look at how to calculate the structure data type size.
    2022-07-03 20:19:41下载
    积分:1
  • 简易FIR滤波器
    1、FIR数字滤波器的设计(1)在主函数中调用dsnFIR函数,滤波器参数设为21阶、带阻、矩形窗、采样率1000Hz、上下截止频率分别为100Hz,400Hz;(2)利用drawFIR函数分别画出所设计的FIR滤波器的幅频特性图和相频特性图。2、FIR数字滤波实现(1)编写一个输入信号子程序func(),输入信号为一连续函数,表达式为;(2)对输入信号进行采样,即       ,这里取采样率,得到离散序列x(n);(3)取x(n)中前40个点的值,将其转为复数存入复数数组x[64]中,并对x[64]做64点的FFT,得到的X(k)存回x[64]中;(4)已知在主函数中调用dsnFIR函数后得到的输出结果b[21]即为FIR滤波器单位冲激响应h(n)的值,将其转为复数存入复数数组h[64]中,并对h[64]做64点的FFT,得到的H(k)存回h[64]中;(5)已知用FIR滤波器对输入信号进行滤波就是将输入信号x(n)与滤波器单位冲激响应h(n)做卷积运算,故我转到频域采用FFT方法实现对输入信号x(n)的滤波,即将X(k)与H(k)相乘,得到滤波后信号的FFT变换Y(k),然后只需对Y(k)做IFFT变换即可得到滤波后信号y(n)。
    2022-05-23 13:46:22下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载