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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/en_US/symbolic/trisolve.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:
12
12
 *
13
13
 -->
14
14
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns5="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="trisolve" xml:lang="en">
15
 
  <refnamediv>
16
 
    <refname>trisolve</refname>
17
 
    <refpurpose>symbolic linear system solver</refpurpose>
18
 
  </refnamediv>
19
 
  <refsynopsisdiv>
20
 
    <title>Calling Sequence</title>
21
 
    <synopsis>[x [,sexp]] = trisolve(A,b [,sexp])</synopsis>
22
 
  </refsynopsisdiv>
23
 
  <refsection>
24
 
    <title>Arguments</title>
25
 
    <variablelist>
26
 
      <varlistentry>
27
 
        <term>A,b</term>
28
 
        <listitem>
29
 
          <para>matrices of strings</para>
30
 
        </listitem>
31
 
      </varlistentry>
32
 
    </variablelist>
33
 
  </refsection>
34
 
  <refsection>
35
 
    <title>Description</title>
36
 
    <para>
37
 
      symbolically solves <literal>A*x =b</literal> , <literal>A</literal>
38
 
      being assumed to be upper triangular.
39
 
    </para>
40
 
    <para>
41
 
      <literal>sexp</literal> is a vector of common subexpressions in
42
 
      <literal>A, b, x</literal>.
43
 
    </para>
44
 
  </refsection>
45
 
  <refsection>
46
 
    <title>Examples</title>
47
 
    <programlisting role="example"><![CDATA[ 
 
15
    <refnamediv>
 
16
        <refname>trisolve</refname>
 
17
        <refpurpose>symbolic linear system solver</refpurpose>
 
18
    </refnamediv>
 
19
    <refsynopsisdiv>
 
20
        <title>Calling Sequence</title>
 
21
        <synopsis>[x [,sexp]] = trisolve(A,b [,sexp])</synopsis>
 
22
    </refsynopsisdiv>
 
23
    <refsection>
 
24
        <title>Arguments</title>
 
25
        <variablelist>
 
26
            <varlistentry>
 
27
                <term>A,b</term>
 
28
                <listitem>
 
29
                    <para>matrices of strings</para>
 
30
                </listitem>
 
31
            </varlistentry>
 
32
        </variablelist>
 
33
    </refsection>
 
34
    <refsection>
 
35
        <title>Description</title>
 
36
        <para>
 
37
            symbolically solves <literal>A*x =b</literal> , <literal>A</literal>
 
38
            being assumed to be upper triangular.
 
39
        </para>
 
40
        <para>
 
41
            <literal>sexp</literal> is a vector of common subexpressions in
 
42
            <literal>A, b, x</literal>.
 
43
        </para>
 
44
    </refsection>
 
45
    <refsection>
 
46
        <title>Examples</title>
 
47
        <programlisting role="example"><![CDATA[ 
48
48
A=['x','y';'0','z'];b=['0';'1'];
49
49
w=trisolve(A,b)
50
50
x=5;y=2;z=4;
51
51
evstr(w)
52
52
inv(evstr(A))*evstr(b)
53
53
 ]]></programlisting>
54
 
  </refsection>
55
 
  <refsection role="see also">
56
 
    <title>See Also</title>
57
 
    <simplelist type="inline">
58
 
      <member>
59
 
        <link linkend="trianfml">trianfml</link>
60
 
      </member>
61
 
      <member>
62
 
        <link linkend="solve">solve</link>
63
 
      </member>
64
 
    </simplelist>
65
 
  </refsection>
 
54
    </refsection>
 
55
    <refsection role="see also">
 
56
        <title>See Also</title>
 
57
        <simplelist type="inline">
 
58
            <member>
 
59
                <link linkend="trianfml">trianfml</link>
 
60
            </member>
 
61
            <member>
 
62
                <link linkend="solve">solve</link>
 
63
            </member>
 
64
        </simplelist>
 
65
    </refsection>
66
66
</refentry>