env_phas.m

来自「自己做的一道关于调频的MATLAB代码,希望大家引用。」· M 代码 · 共 12 行

M
12
字号
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 phase 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 + =
减小字号Ctrl + -
显示快捷键?