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

« back to all changes in this revision

Viewing changes to modules/polynomials/help/en_US/determ.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="determ">
14
 
  <refnamediv>
15
 
    <refname>determ</refname>
16
 
    <refpurpose> determinant of polynomial matrix</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>res=determ(W [,k])</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Arguments</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>W</term>
27
 
        <listitem>
28
 
          <para>real square polynomial matrix</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>k</term>
33
 
        <listitem>
34
 
          <para>integer (upper bound for the degree of the determinant of W)</para>
35
 
        </listitem>
36
 
      </varlistentry>
37
 
    </variablelist>
38
 
  </refsection>
39
 
  <refsection>
40
 
    <title>Description</title>
41
 
    <para>
42
 
      returns the determinant of a real polynomial matrix
43
 
      (computation made by FFT if W size is greater than 2*2).
44
 
    </para>
45
 
    <para>
46
 
      <literal>res=determ(W [,k])</literal><literal>k</literal> is an integer larger than the actual degree of the determinant
47
 
      of <literal>W</literal>.
48
 
    </para>
49
 
    <para>
50
 
      The default value of <literal>k</literal> is the smallest power of 2 which is larger
51
 
      than <literal>n*max(degree(W))</literal>.
52
 
    </para>
53
 
    <para>
54
 
      Method (Only if W size is greater than 2*2) : evaluate the determinant of <literal>W</literal> for the Fourier frequencies
55
 
      and apply inverse FFT to the coefficients of the determinant.
56
 
    </para>
57
 
  </refsection>
58
 
  <refsection>
59
 
    <title>Examples</title>
60
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>determ</refname>
 
16
        <refpurpose> determinant of polynomial matrix</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>res=determ(W [,k])</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Arguments</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>W</term>
 
27
                <listitem>
 
28
                    <para>real square polynomial matrix</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>k</term>
 
33
                <listitem>
 
34
                    <para>integer (upper bound for the degree of the determinant of W)</para>
 
35
                </listitem>
 
36
            </varlistentry>
 
37
        </variablelist>
 
38
    </refsection>
 
39
    <refsection>
 
40
        <title>Description</title>
 
41
        <para>
 
42
            returns the determinant of a real polynomial matrix
 
43
            (computation made by FFT if W size is greater than 2*2).
 
44
        </para>
 
45
        <para>
 
46
            <literal>res=determ(W [,k])</literal><literal>k</literal> is an integer larger than the actual degree of the determinant
 
47
            of <literal>W</literal>.
 
48
        </para>
 
49
        <para>
 
50
            The default value of <literal>k</literal> is the smallest power of 2 which is larger
 
51
            than <literal>n*max(degree(W))</literal>.
 
52
        </para>
 
53
        <para>
 
54
            Method (Only if W size is greater than 2*2) : evaluate the determinant of <literal>W</literal> for the Fourier frequencies
 
55
            and apply inverse FFT to the coefficients of the determinant.
 
56
        </para>
 
57
    </refsection>
 
58
    <refsection>
 
59
        <title>Examples</title>
 
60
        <programlisting role="example"><![CDATA[ 
61
61
s=poly(0,'s');
62
62
w=s*rand(10,10);
63
63
determ(w)
64
64
det(coeff(w,1))*s^10
65
65
 ]]></programlisting>
66
 
  </refsection>
67
 
  <refsection role="see also">
68
 
    <title>See Also</title>
69
 
    <simplelist type="inline">
70
 
      <member>
71
 
        <link linkend="det">det</link>
72
 
      </member>
73
 
      <member>
74
 
        <link linkend="detr">detr</link>
75
 
      </member>
76
 
      <member>
77
 
        <link linkend="coffg">coffg</link>
78
 
      </member>
79
 
    </simplelist>
80
 
  </refsection>
 
66
    </refsection>
 
67
    <refsection role="see also">
 
68
        <title>See Also</title>
 
69
        <simplelist type="inline">
 
70
            <member>
 
71
                <link linkend="det">det</link>
 
72
            </member>
 
73
            <member>
 
74
                <link linkend="detr">detr</link>
 
75
            </member>
 
76
            <member>
 
77
                <link linkend="coffg">coffg</link>
 
78
            </member>
 
79
        </simplelist>
 
80
    </refsection>
81
81
</refentry>