📄 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);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -