init
This commit is contained in:
16
FOTF Toolbox/@foss/bode.m
Normal file
16
FOTF Toolbox/@foss/bode.m
Normal file
@ -0,0 +1,16 @@
|
||||
function H=bode(G,varargin)
|
||||
% bode - draw Bode diagram for an FOSS object
|
||||
%
|
||||
% bode(G,w)
|
||||
% H=bode(G,w)
|
||||
%
|
||||
% G - the FOSS object
|
||||
% w - the frequency vector
|
||||
% H - the frequency response data in FRD format
|
||||
|
||||
% Copyright (c) Dingyu Xue, Northeastern University, China
|
||||
% Last modified 28 March, 2017
|
||||
% Last modified 18 May, 2022
|
||||
if nargout==0, bode(fotf(G),varargin{:});
|
||||
else, H=bode(fotf(G),varargin{:}); end
|
||||
end
|
||||
Reference in New Issue
Block a user