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

📄 lpvhinf.m

📁 线性时变系统控制器设计的工具包
💻 M
字号:
function [vhinf,vfreq] = lpvhinf(vlpv);% [vhinf,vfreq] = lpvhinf(vlpv);%% Calculates H_inf norms for 1 or more LTI systems % (or evaluations of an LPV system).  %% Input:   vlpv 	 A varying array of systems matrices% Outputs: vhinf         H_inf norms in a varying matrix%          vfreq	 Frequencies where the peaks occurif nargin == 0 disp(['usage: [vhinf,vfreq] = lpvhinf(vlpv)']); returnend[typ,dum1,dum2,npts] = minfo(vlpv);vhinf = zeros(npts,1);vfreq = zeros(npts,1);for k=1:npts out = hinfnorm(xtracti(vlpv,k,1)); vhinf(k) = out(2); vfreq(k) = out(3);endviv = getiv(vlpv);vhinf = vpck(vhinf,viv);vfreq = vpck(vfreq,viv);

⌨️ 快捷键说明

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