English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 文章/文档 >
通讯编程文档
> 查看源码
Quadcomp.m
资源名称:
现代通信系统matlab版源代码.zip [点击查看]
上传用户:
loeagle
上传日期:
2013-03-02
资源大小:
1236k
文件大小:
0k
源码类别:
通讯编程文档
开发平台:
Matlab
Quadcomp.m:源码内容
function [xc,xs]=quadcomp(x,ts,f0)
% [xc,xs]=quadcomp(x,ts,f0)
%QUADCOMP Returns the in-phase and quadrature components of
% the signal x. f0 is the center frequency. ts is the
% sampling interval.
%
z=loweq(x,ts,f0);
xc=real(z);
xs=imag(z);