quadcomp.m

来自「关于跳频通信的资料,希望能对大家有所帮助和启发」· M 代码 · 共 9 行

M
9
字号
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);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?