⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ugm.m

📁 Upper gain margin Intended for a senior-level course on the analysis and design of digital control
💻 M
字号:
function ugm(A,B,L);
%UGM	Upper gain  margin.
%	ugm(A,B,L) computes and prints the upper gain margin(s) for the 
%	loop transfer function described by the state space matrices A,B,L. 
%	The maximum margin the function searches for is 30 dB.

%  R.J. Vaccaro 5/94

UGmax=31;
[n,p]=size(B);
for loop = 1:p
  bv=B(:,loop);
  t1=1;
  t2=2;
  skip=0;
  B(:,loop)=t2*bv;
  while skip==0 & max(abs(eig(A-B*L)))<1
    if t2>UGmax
	skip=1;
	ug=t2;
    end
    t2=2*t2;
    B(:,loop)=t2*bv;
  end
  if skip==0
    while 20*log10(t2/t1)>0.001
    	tt=(t1+t2)/2;
	B(:,loop)=tt*bv;
	if  max(abs(eig(A-B*L)))>1
	  t2=tt;
	else
	  t1=tt;
	end
    end
    ug=tt;
  end
  ugm(loop)=20*log10(ug);
  fprintf('Upper gain margin for input #%g is %g dB\n',loop,...
					round(100*ugm(loop))/100);
  B(:,loop)=bv;
end
%
%  END OF UGM.M 

⌨️ 快捷键说明

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