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

« back to all changes in this revision

Viewing changes to modules/polynomials/help/en_US/pdiv.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:
11
11
 *
12
12
 -->
13
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:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="pdiv">
14
 
  <refnamediv>
15
 
    <refname>pdiv</refname>
16
 
    <refpurpose> polynomial division</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>[R,Q]=pdiv(P1,P2)
21
 
      [Q]=pdiv(P1,P2)
22
 
    </synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Arguments</title>
26
 
    <variablelist>
27
 
      <varlistentry>
28
 
        <term>P1</term>
29
 
        <listitem>
30
 
          <para>polynomial matrix</para>
31
 
        </listitem>
32
 
      </varlistentry>
33
 
      <varlistentry>
34
 
        <term>P2</term>
35
 
        <listitem>
36
 
          <para>polynomial or polynomial matrix</para>
37
 
        </listitem>
38
 
      </varlistentry>
39
 
      <varlistentry>
40
 
        <term>R,Q</term>
41
 
        <listitem>
42
 
          <para>two polynomial matrices</para>
43
 
        </listitem>
44
 
      </varlistentry>
45
 
    </variablelist>
46
 
  </refsection>
47
 
  <refsection>
48
 
    <title>Description</title>
49
 
    <para>
50
 
      Element-wise euclidan division of the polynomial matrix <literal>P1</literal>
51
 
      by the polynomial <literal>P2</literal> or by the polynomial matrix <literal>P2</literal>.
52
 
      <literal>Rij</literal> is the matrix of remainders, <literal>Qij</literal> is the matrix
53
 
      of quotients and <literal>P1ij = Qij*P2 + Rij</literal> or <literal>P1ij = Qij*P2ij + Rij</literal>.
54
 
    </para>
55
 
  </refsection>
56
 
  <refsection>
57
 
    <title>Examples</title>
58
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>pdiv</refname>
 
16
        <refpurpose> polynomial division</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>[R,Q]=pdiv(P1,P2)
 
21
            [Q]=pdiv(P1,P2)
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>Arguments</title>
 
26
        <variablelist>
 
27
            <varlistentry>
 
28
                <term>P1</term>
 
29
                <listitem>
 
30
                    <para>polynomial matrix</para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
            <varlistentry>
 
34
                <term>P2</term>
 
35
                <listitem>
 
36
                    <para>polynomial or polynomial matrix</para>
 
37
                </listitem>
 
38
            </varlistentry>
 
39
            <varlistentry>
 
40
                <term>R,Q</term>
 
41
                <listitem>
 
42
                    <para>two polynomial matrices</para>
 
43
                </listitem>
 
44
            </varlistentry>
 
45
        </variablelist>
 
46
    </refsection>
 
47
    <refsection>
 
48
        <title>Description</title>
 
49
        <para>
 
50
            Element-wise euclidan division of the polynomial matrix <literal>P1</literal>
 
51
            by the polynomial <literal>P2</literal> or by the polynomial matrix <literal>P2</literal>.
 
52
            <literal>Rij</literal> is the matrix of remainders, <literal>Qij</literal> is the matrix
 
53
            of quotients and <literal>P1ij = Qij*P2 + Rij</literal> or <literal>P1ij = Qij*P2ij + Rij</literal>.
 
54
        </para>
 
55
    </refsection>
 
56
    <refsection>
 
57
        <title>Examples</title>
 
58
        <programlisting role="example"><![CDATA[ 
59
59
x=poly(0,'x');
60
60
p1=(1+x^2)*(1-x);p2=1-x;
61
61
[r,q]=pdiv(p1,p2)
64
64
[r,q]=pdiv(p1,p2)
65
65
p2*q+r-p1
66
66
 ]]></programlisting>
67
 
  </refsection>
68
 
  <refsection role="see also">
69
 
    <title>See Also</title>
70
 
    <simplelist type="inline">
71
 
      <member>
72
 
        <link linkend="ldiv">ldiv</link>
73
 
      </member>
74
 
      <member>
75
 
        <link linkend="gcd">gcd</link>
76
 
      </member>
77
 
    </simplelist>
78
 
  </refsection>
 
67
    </refsection>
 
68
    <refsection role="see also">
 
69
        <title>See Also</title>
 
70
        <simplelist type="inline">
 
71
            <member>
 
72
                <link linkend="ldiv">ldiv</link>
 
73
            </member>
 
74
            <member>
 
75
                <link linkend="gcd">gcd</link>
 
76
            </member>
 
77
        </simplelist>
 
78
    </refsection>
79
79
</refentry>