English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 文章/文档 >
通讯编程文档
> 查看源码
Loweq.m
资源名称:
现代通信系统matlab版源代码.zip [点击查看]
上传用户:
loeagle
上传日期:
2013-03-02
资源大小:
1236k
文件大小:
0k
源码类别:
通讯编程文档
开发平台:
Matlab
Loweq.m:源码内容
function xl=loweq(x,ts,f0)
% xl=loweq(x,ts,f0)
%LOWEQ Returns the lowpass equivalent of the signal x.
% f0 is the center frequency.
% ts is the sampling interval.
%
t=[0:ts:ts*(length(x)-1)];
z=hilbert(x);
xl=z.*exp(-j*2*pi*f0*t);