phase.m

来自「Second and Higher-Order Statistics based」· M 代码 · 共 22 行

M
22
字号
function PHI=phase(G)%PHASE  Computes the phase of a complex vector%%   PHI=phase(G)%%   G is a complex-valued row vector and PHI is returned as its%   phase (in radians), with an effort made to keep it continuous%   over the pi-borders.%   L. Ljung 10-2-86%   Copyright (c) 1986-97 by The MathWorks, Inc.%   $Revision: 2.2 $  $Date: 1997/04/16 20:02:51 $PHI=atan2(imag(G),real(G));N=length(PHI);DF=PHI(1:N-1)-PHI(2:N);I=find(abs(DF)>3.5);for i=Iif i~=0,PHI=PHI+2*pi*sign(DF(i))*[zeros(1,i) ones(1,N-i)];endend

⌨️ 快捷键说明

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