📄 phase.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -