English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 文章/文档 >
通讯编程文档
> 查看源码
ussb_mod.m
资源名称:
现代通信系统matlab版源代码.zip [点击查看]
上传用户:
loeagle
上传日期:
2013-03-02
资源大小:
1236k
文件大小:
0k
源码类别:
通讯编程文档
开发平台:
Matlab
ussb_mod.m:源码内容
function u=ussb_mod(m,ts,fc)
% u=ussb_mod(m,ts,fc)
%USSB_MOD takes signal m sampled at ts and carrier
% freq. fc as input and returns the USSB modulated
% signal. ts << 1/2fc.
t=[0:length(m)-1]*ts;
u=m.*cos(2*pi*t)-imag(hilbert(m)).*sin(2*pi*t);