Man Scilab

gainplot
Scilab Function

gainplot - magnitude plot

Calling Sequence

gainplot(sl,fmin,fmax [,step] [,comments] )
gainplot(frq,db,phi [,comments])
gainplot(frq, repf [,comments])

Parameters

Description

Same as Bode but plots only the magnitude.

Examples


s=poly(0,'s')
h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01))
gainplot(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)')
clf()
h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
gainplot([h1;h],0.01,100,['h1';'h'])
 
  

See Also

bode ,   black ,   nyquist ,   freq ,   repfreq ,   g_margin ,   p_margin ,  

Back