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

« back to all changes in this revision

Viewing changes to modules/m2sci/help/en_US/m2sci_equivalents/t/toeplitz.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:id="m2sci_toeplitz">
14
 
  <refnamediv>
15
 
    <refname>toeplitz (Matlab function)</refname>
16
 
    <refpurpose>Toeplitz matrix</refpurpose>
17
 
  </refnamediv>
18
 
  <refsection>
19
 
    <title>Matlab/Scilab equivalent</title>
20
 
    <informaltable border="1" width="100%">
21
 
      <tr>
22
 
        <td align="center">
23
 
          <emphasis role="bold">Matlab</emphasis>
24
 
        </td>
25
 
        <td align="center">
26
 
          <emphasis role="bold">Scilab</emphasis>
27
 
        </td>
28
 
      </tr>
29
 
      <tr>
30
 
        <td>
31
 
          <programlisting role="example"><![CDATA[
32
 
toeplitz
33
 
]]></programlisting>
34
 
        </td>
35
 
        <td>
36
 
          <programlisting role="example"><![CDATA[
37
 
toeplitz
38
 
]]></programlisting>
39
 
        </td>
40
 
      </tr>
41
 
    </informaltable>
42
 
  </refsection>
43
 
  <refsection>
44
 
    <title>Particular cases</title>
45
 
    <para><emphasis role="bold">toeplitz</emphasis> can be used with empty matrices in Scilab but not in Matlab. 
46
 
</para>
47
 
    <variablelist>
48
 
      <varlistentry>
49
 
        <term>T=toeplitz(c)</term>
50
 
        <listitem>
51
 
          <para>
52
 
If <emphasis role="bold">c</emphasis> is complex, use <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
53
 
Else if <emphasis role="bold">c</emphasis> is not a scalar or a vector, use <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
54
 
</para>
55
 
        </listitem>
56
 
      </varlistentry>
57
 
      <varlistentry>
58
 
        <term>T=toeplitz(c,r)</term>
59
 
        <listitem>
60
 
          <para>
61
 
If <emphasis role="bold">c</emphasis> and <emphasis role="bold">r</emphasis> are not scalars or vectors or if <emphasis role="bold">c(1,1)&lt;&gt;r(1,1)</emphasis>, use: <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
62
 
</para>
63
 
        </listitem>
64
 
      </varlistentry>
65
 
    </variablelist>
66
 
  </refsection>
 
14
    <refnamediv>
 
15
        <refname>toeplitz (Matlab function)</refname>
 
16
        <refpurpose>Toeplitz matrix</refpurpose>
 
17
    </refnamediv>
 
18
    <refsection>
 
19
        <title>Matlab/Scilab equivalent</title>
 
20
        <informaltable border="1" width="100%">
 
21
            <tr>
 
22
                <td align="center">
 
23
                    <emphasis role="bold">Matlab</emphasis>
 
24
                </td>
 
25
                <td align="center">
 
26
                    <emphasis role="bold">Scilab</emphasis>
 
27
                </td>
 
28
            </tr>
 
29
            <tr>
 
30
                <td>
 
31
                    <programlisting role="example"><![CDATA[
 
32
toeplitz
 
33
]]></programlisting>
 
34
                </td>
 
35
                <td>
 
36
                    <programlisting role="example"><![CDATA[
 
37
toeplitz
 
38
]]></programlisting>
 
39
                </td>
 
40
            </tr>
 
41
        </informaltable>
 
42
    </refsection>
 
43
    <refsection>
 
44
        <title>Particular cases</title>
 
45
        <para>
 
46
            <emphasis role="bold">toeplitz</emphasis> can be used with empty matrices in Scilab but not in Matlab. 
 
47
        </para>
 
48
        <variablelist>
 
49
            <varlistentry>
 
50
                <term>T=toeplitz(c)</term>
 
51
                <listitem>
 
52
                    <para>
 
53
                        If <emphasis role="bold">c</emphasis> is complex, use <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
 
54
                        Else if <emphasis role="bold">c</emphasis> is not a scalar or a vector, use <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
 
55
                    </para>
 
56
                </listitem>
 
57
            </varlistentry>
 
58
            <varlistentry>
 
59
                <term>T=toeplitz(c,r)</term>
 
60
                <listitem>
 
61
                    <para>
 
62
                        If <emphasis role="bold">c</emphasis> and <emphasis role="bold">r</emphasis> are not scalars or vectors or if <emphasis role="bold">c(1,1)&lt;&gt;r(1,1)</emphasis>, use: <emphasis role="bold">mtlb_toeplitz</emphasis> in Scilab to have the same result than Matlab.
 
63
                    </para>
 
64
                </listitem>
 
65
            </varlistentry>
 
66
        </variablelist>
 
67
    </refsection>
67
68
</refentry>