1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA Serge Steer
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function []=bode(varargin)
rhs=size(varargin)
if type(varargin($))==10 then
comments=varargin($),rhs=rhs-1;
else
comments=[];
end
fname="bode";//for error messages
fmax=[]
if or(typeof(varargin(1))==['state-space' 'rational']) then
//sys,fmin,fmax [,pas] or sys,frq
refdim=1 //for error message
if rhs==1 then //sys
[frq,repf]=repfreq(varargin(1),1d-3,1d3)
elseif rhs==2 then //sys,frq
if size(varargin(2),2)<2 then
error(msprintf(_("%s: Wrong size for input argument #%d: A row vector with length>%d expected.\n"),..
fname,2,1))
end
[frq,repf]=repfreq(varargin(1:rhs))
elseif or(rhs==(3:4)) then //sys,fmin,fmax [,pas]
[frq,repf]=repfreq(varargin(1:rhs))
else
error(msprintf(_("%s: Wrong number of input arguments: %d to %d expected.\n"),fname,1,5))
end
[phi,d]=phasemag(repf)
if rhs>=3 then fmax=varargin(3),end
elseif type(varargin(1))==1 then
//frq,db,phi [,comments] or frq, repf [,comments]
refdim=2
select rhs
case 2 then //frq,repf
frq=varargin(1);
if size(frq,2)<2 then
error(msprintf(_("%s: Wrong size for input argument #%d: A row vector with length>%d expected.\n"),..
fname,1,1))
end
if size(frq,2)<>size(varargin(2),2) then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Same column dimensions expected.\n"),..
fname,1,2))
end
[phi,d]=phasemag(varargin(2))
case 3 then //frq,db,phi
[frq,d,phi]=varargin(1:rhs)
if size(frq,2)<>size(d,2) then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Same column dimensions expected.\n"),..
fname,1,2))
end
if size(frq,2)<>size(phi,2) then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Same column dimensions expected.\n"),..
fname,1,3))
end
else
error(msprintf(_("%s: Wrong number of input arguments: %d to %d expected.\n"),fname,2,4))
end
else
error(msprintf(_("%s: Wrong type for input argument #%d: Linear dynamical system or row vector of floats expected.\n"),fname,1))
end;
frq=frq';d=d',phi=phi'
[n,mn]=size(d)
if comments==[] then
hx=0.48
else
if size(comments,'*')<>mn then
error(msprintf(_("%s: Incompatible input arguments #%d and #%d: Same number of elements expected.\n"),...
fname,refdim,rhs+1))
end
hx=0.43
end;
drawlater()
sciCurAxes=gca();
axes=sciCurAxes;
wrect=axes.axes_bounds;
//magnitude
axes.axes_bounds=[wrect(1)+0,wrect(2)+0,wrect(3)*1.0,wrect(4)*hx*0.95]
axes.data_bounds = [min(frq),min(d);max(frq),max(d)];
axes.log_flags = "lnn" ;
axes.grid=color('lightgrey')*ones(1,3);
axes.axes_visible="on";
axes.clip_state = "clipgrf";
if size(d,2)>1&size(frq,2)==1 then
xpolys(frq(:,ones(1,mn)),d,1:mn)
else
xpolys(frq,d,1:mn)
end
if fmax<>[]&max(frq)<fmax then
xpoly(max(frq)*[1;1],axes.y_ticks.locations([1 $]));e=gce();
e.foreground=5;
end
xtitle("",_("Frequency (Hz)"),_("Magnitude (Db)"));
//phase
axes=newaxes();
axes.axes_bounds=[wrect(1)+0,wrect(2)+wrect(4)*hx,wrect(3)*1.0,wrect(4)*hx*0.95];
axes.data_bounds = [mini(frq),mini(phi);maxi(frq),maxi(phi)];
axes.log_flags = "lnn" ;
axes.grid=color('lightgrey')*ones(1,3);
axes.axes_visible="on";
axes.clip_state = "clipgrf";
if size(phi,2)>1&size(frq,2)==1 then
xpolys(frq(:,ones(1,mn)),phi,1:mn)
else
xpolys(frq,phi,1:mn)
end
ephi=gce()
if fmax<>[]&max(frq)<fmax then
xpoly(max(frq)*[1;1],axes.y_ticks.locations([1 $]));e=gce();
e.foreground=5;
end
xtitle("",_("Frequency (Hz)"),_("Phase (degree)"));
// create legend
if comments<>[] then
captions(ephi.children,comments,'lower_caption')
end
drawnow()
// return to the previous scale
set( "current_axes", sciCurAxes ) ;
endfunction
|