~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/eng/control/g_margin.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>g_margin</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="g_margin"> gain margin</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[gm [,fr]]=g_margin(h)   </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>h</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: <VERB>syslin</VERB> list representing a linear system in  state-space or transfer form</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
    </PARAM_INDENT>
 
21
  </PARAM>
 
22
  <DESCRIPTION>
 
23
    <P>
 
24
    returns <VERB>gm</VERB>, the gain margin in dB of <VERB>h</VERB> 
 
25
    (SISO plant) and <VERB>fr</VERB>, the achieved corresponding frequency in hz.
 
26
    The gain margin is values of the system gain at points where the
 
27
    nyquist plot crosses the negative real axis.</P>
 
28
  </DESCRIPTION>
 
29
  <EXAMPLE>
 
30
<![CDATA[
 
31
h=syslin('c',-1+%s,3+2*%s+%s^2)
 
32
[g,fr]=g_margin(h)
 
33
[g,fr]=g_margin(h-10)
 
34
nyquist(h-10)
 
35
 ]]>
 
36
  </EXAMPLE>
 
37
  <SEE_ALSO>
 
38
    <SEE_ALSO_ITEM>
 
39
      <LINK>p_margin</LINK>
 
40
    </SEE_ALSO_ITEM>
 
41
    <SEE_ALSO_ITEM>
 
42
      <LINK>black</LINK>
 
43
    </SEE_ALSO_ITEM>
 
44
    <SEE_ALSO_ITEM>
 
45
      <LINK>chart</LINK>
 
46
    </SEE_ALSO_ITEM>
 
47
    <SEE_ALSO_ITEM>
 
48
      <LINK>nyquist</LINK>
 
49
    </SEE_ALSO_ITEM>
 
50
  </SEE_ALSO>
 
51
</MAN>