~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/cacsd/help/pt_BR/gainplot.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="ISO-8859-1"?>
2
 
<!--
3
 
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4
 
 * Copyright (C) INRIA
5
 
 * 
6
 
 * This file must be used under the terms of the CeCILL.
7
 
 * This source file is licensed as described in the file COPYING, which
8
 
 * you should have received as part of this distribution.  The terms
9
 
 * are also available at    
10
 
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
11
 
 *
12
 
 -->
13
 
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns3="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="gainplot" xml:lang="en">
14
 
  <refnamediv>
15
 
    <refname>gainplot</refname>
16
 
    <refpurpose>esbo�o de magnitude</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Seq��ncia de Chamamento</title>
20
 
    <synopsis>gainplot(sl,fmin,fmax [,step] [,comments] )
21
 
      gainplot(frq,db,phi [,comments])
22
 
      gainplot(frq, repf [,comments])
23
 
    </synopsis>
24
 
  </refsynopsisdiv>
25
 
  <refsection>
26
 
    <title>Par�metros</title>
27
 
    <variablelist>
28
 
      <varlistentry>
29
 
        <term>sl</term>
30
 
        <listitem>
31
 
          <para>
32
 
            lista (sistema linear <literal>syslin</literal> SIMO).
33
 
          </para>
34
 
        </listitem>
35
 
      </varlistentry>
36
 
      <varlistentry>
37
 
        <term>fmin,fmax</term>
38
 
        <listitem>
39
 
          <para>escalares reais (intervalo de freq��ncia). </para>
40
 
        </listitem>
41
 
      </varlistentry>
42
 
      <varlistentry>
43
 
        <term>step</term>
44
 
        <listitem>
45
 
          <para>real (passo de discretiza��o (escala logar�tmica)) </para>
46
 
        </listitem>
47
 
      </varlistentry>
48
 
      <varlistentry>
49
 
        <term>comments</term>
50
 
        <listitem>
51
 
          <para>string</para>
52
 
        </listitem>
53
 
      </varlistentry>
54
 
      <varlistentry>
55
 
        <term>frq</term>
56
 
        <listitem>
57
 
          <para>matriz (freq��ncias linha por linha) </para>
58
 
        </listitem>
59
 
      </varlistentry>
60
 
      <varlistentry>
61
 
        <term>db,phi</term>
62
 
        <listitem>
63
 
          <para>matrizes (magnitudes e fases correspondentes a
64
 
            <literal>frq</literal>)
65
 
          </para>
66
 
        </listitem>
67
 
      </varlistentry>
68
 
      <varlistentry>
69
 
        <term>repf</term>
70
 
        <listitem>
71
 
          <para>matriz de complexos. Uma linha para cada resposta de
72
 
            freq��ncia.
73
 
          </para>
74
 
        </listitem>
75
 
      </varlistentry>
76
 
    </variablelist>
77
 
  </refsection>
78
 
  <refsection>
79
 
    <title>Descri��o</title>
80
 
    <para>� o mesmo que Bode, mas esbo�a apenas a magnitude.</para>
81
 
  </refsection>
82
 
  <refsection>
83
 
    <title>Exemplos</title>
84
 
    <programlisting role="example"><![CDATA[ 
85
 
s=poly(0,'s')
86
 
h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01))
87
 
gainplot(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)')
88
 
clf()
89
 
h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
90
 
gainplot([h1;h],0.01,100,..
91
 
                       ["$\frac{s^2+18 s+100}{s^2+6.06 s+102.1}$";
92
 
                        "$\frac{s^2+3.02 s+228.01}{s^2+27 s+225}$"])
93
 
title('Gainplot')
94
 
 ]]></programlisting>
95
 
  </refsection>
96
 
  <refsection role="see also">
97
 
    <title>Ver Tamb�m</title>
98
 
    <simplelist type="inline">
99
 
      <member>
100
 
        <link linkend="bode">bode</link>
101
 
      </member>
102
 
      <member>
103
 
        <link linkend="black">black</link>
104
 
      </member>
105
 
      <member>
106
 
        <link linkend="nyquist">nyquist</link>
107
 
      </member>
108
 
      <member>
109
 
        <link linkend="freq">freq</link>
110
 
      </member>
111
 
      <member>
112
 
        <link linkend="repfreq">repfreq</link>
113
 
      </member>
114
 
      <member>
115
 
        <link linkend="g_margin">g_margin</link>
116
 
      </member>
117
 
      <member>
118
 
        <link linkend="p_margin">p_margin</link>
119
 
      </member>
120
 
    </simplelist>
121
 
  </refsection>
122
 
</refentry>