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

📄 mvdb.m

📁 控制系统计算机辅助设计——MATLAB语言与应用(源代码)
💻 M
字号:
function mvdb(w,f,index)
%MVDB   Plot Multi-Variable magnitude Bode diagram.
%       MVDB(W,F,INDEX) plots the magnitudes of elements of
%       the MVFR matrix, F, specified by INDEX on a Bode diagram.
%       `Unwrap' is applied to the phases before plotting.
%
%       INDEX is an optional argument which is a two
%       column matrix whose rows specify the elements
%       of F to be plotted.
%       If INDEX is missing all the elements are plotted.
%
%       See also MVBODE,MVNIC,MVNYQ,PLOTBODE,PLOTDB,UNWRAP.

%       Dr M.P. Ford 4th August 1987
% Copyright (c) 1987,1993 by GEC Engineering Research Centre and 
% Cambridge Control Ltd. All Rights Reserved.
% History:
%   `fixphase' replaced by `unwrap', 29.5.93,JMM.

if nargin == 3
   f=fget(w,f,index);
else
   f=fget(w,f);
end
plotdb(w,f)

⌨️ 快捷键说明

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