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

📄 fcgersh.m

📁 MFD-多变量系统频域设计工具
💻 M
字号:
function c=fcgersh(w,f,i,n)
%FCGERSH         Generate column Gershgorin circles.
%       FCGERSH(W,F,i) calculates the column Gershgorin circles for column i
%       of the MVFR matrix, F, and returns one column per frequency
%       which contain the points on the circle at that frequency.
%
%       FCGERSH(W,F,i,n) calls FCOMP(W,F,n) before
%       calculating the column Gershgorin circles for column i.
%
%       See also FCOMP

%       Dr M.P. Ford 4th August 1987
% Copyright (c) 1987 by GEC Engineering Research Centre & Cambridge Control Ltd

if nargin==4
   [f,w]=fcomp(w,f,n);
end
cent=fdiag(w,f);
rad=fcsod(w,f);
c=circ(cent(:,i),rad(:,i),31);
end

⌨️ 快捷键说明

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