File: m_circle.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (38 lines) | stat: -rw-r--r-- 801 bytes parent folder | download | duplicates (2)
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
.TH m_circle 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
m_circle - M-circle plot
.SH CALLING SEQUENCE
.nf
 m_circle()
 m_circle(gain)
.fi
.SH PARAMETERS
.TP
gain 
: vector of gains (in DB). The default value is 
.RS
.TP 
gain
=[-12 -8 -6 -5 -4 -3 -2 -1.4 -1 -.5 0.25 0.5 0.7 1 1.4 2 2.3 3 4 5 6 8 12]
.RE
.SH DESCRIPTION 
\fVm_circle\fR is used with \fVnyquist\fR.
.SH EXAMPLE 
.nf
//Example 1 :
  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))
  nyquist(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)')
  m_circle();
//Example 2:
  xbasc();
  h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
  nyquist([h1;h],0.01,100,['h1';'h'])
  m_circle([-8 -6 -4]);
.fi
.SH SEE ALSO 
nyquist, chart, black
.SH AUTHOR
S.Steer.