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

« back to all changes in this revision

Viewing changes to modules/polynomials/help/en_US/derivat.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="derivat">
14
 
  <refnamediv>
15
 
    <refname>derivat</refname>
16
 
    <refpurpose> rational matrix derivative</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>pd=derivat(p)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Arguments</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>p</term>
27
 
        <listitem>
28
 
          <para>polynomial or rational matrix</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
    </variablelist>
32
 
  </refsection>
33
 
  <refsection>
34
 
    <title>Description</title>
35
 
    <para>
36
 
      computes the derivative of the polynomial
37
 
      or rational function matrix w.r.t the dummy variable.
38
 
    </para>
39
 
  </refsection>
40
 
  <refsection>
41
 
    <title>Examples</title>
42
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>derivat</refname>
 
16
        <refpurpose> rational matrix derivative</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>pd=derivat(p)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Arguments</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>p</term>
 
27
                <listitem>
 
28
                    <para>polynomial or rational matrix</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
        </variablelist>
 
32
    </refsection>
 
33
    <refsection>
 
34
        <title>Description</title>
 
35
        <para>
 
36
            computes the derivative of the polynomial
 
37
            or rational function matrix w.r.t the dummy variable.
 
38
        </para>
 
39
    </refsection>
 
40
    <refsection>
 
41
        <title>Examples</title>
 
42
        <programlisting role="example"><![CDATA[ 
43
43
s=poly(0,'s');
44
44
derivat(1/s)  // -1/s^2;
45
45
 ]]></programlisting>
46
 
  </refsection>
 
46
    </refsection>
47
47
</refentry>