📄 mvbode.m
字号:
function mvbode(w,f,index)
%MVBODE Plot Multi-Variable Bode diagram.
% MVBODE(W,F,INDEX) plots the elements of the MVFR
% matrix, F, specified by INDEX on a Bode diagram.
% `Unwrap' is applied to the phases befor 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 MVDB,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
plotbode(w,f)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -