当前位置:网站首页>【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成
【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成
2022-07-04 03:55:00 【嵌入式职场】
目录
窄带高斯白噪声的生成
function out = noise_nb(fc,B,N0,t)
% Output narrow band Gaussian noise samples
% with
% single-sided power spectrum N0
% carrier frequency equals fc
% bandwidth euqals B
dt = t(2)-t(1);
Fmx = 1/dt;
n_len = length(t);
p = (N0/2)*Fmx;%于 2016-04-13 添加除 2,源程序没有。
rn = sqrt(p)*randn(1,n_len);
[f,rf] = T2F(t,rn);
[t,out] = bpf(f,rf,fc-B/2,fc+B/2);边栏推荐
- MySQL JDBC programming
- Distributed cap theory
- Instructions for LPC interrupt binding under ft2000+
- Formatted text of Kivy tutorial (tutorial includes source code)
- Operate the server remotely more gracefully: the practice of paramiko Library
- 6-4 vulnerability exploitation SSH banner information acquisition
- rac删除损坏的磁盘组
- Main applications of TDK lambda power supply
- Eig launched Grupo Cerro, a renewable energy platform in Chile
- [Yugong series] go teaching course 001 in July 2022 - Introduction to go language premise
猜你喜欢
随机推荐
Qt QTableView数据列宽度自适应
Niuke Xiaobai monthly race 49
Rhcsa 07 - user and group management
Distributed cap theory
6-4 vulnerability exploitation SSH banner information acquisition
FT2000+下LPC中断绑核使用说明
ADB tools
【愚公系列】2022年7月 Go教学课程 002-Go语言环境安装
附件三:防守方评分标准.docx
Kivy教程之 07 组件和属性绑定实现按钮button点击修改label组件(教程含源码)
附件六:防守工作簡報.docx
AcWing第 58 场周赛
[wechat applet] good looking carousel map component
最长递增子序列问题(你真的会了吗)
更优雅地远程操作服务器:Paramiko库的实践
RPC Technology
Rhcsa 04 - process management
20000 words will take you to master multithreading
Rhcsa 01 - create partitions and file systems
6-4漏洞利用-SSH Banner信息获取









