📄 env_phas.m
字号:
function [v,phi]=env_phas(x,ts,f0)
% [v,phi]=env_phas(x,ts,f0)
% v=env_phas(x,ts,f0)
% ENV_PHAS Returns the envelope and the phass of the bandpass signal x.
% f0 is the center frequency.
% ts is the sampling interval.
if nargout==2
z=loweq(x,ts,f0);
phi=angle(z);
end
v=abs(hilbert(x));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -