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

« back to all changes in this revision

Viewing changes to modules/compatibility_functions/help/en_US/mtlb_0.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="mtlb_0">
14
 
  <refnamediv>
15
 
    <refname>mtlb_0</refname>
16
 
    <refpurpose>Matlab non-conjugate transposition emulation function</refpurpose>
17
 
  </refnamediv>
18
 
  <refsection>
19
 
    <title>Description</title>
20
 
    <para>Matlab and Scilab non-conjugate transposition behave differently in some particular cases:</para>
21
 
    <itemizedlist>
22
 
      <listitem>
23
 
        <para>
24
 
          With character strings operands: The <literal>.'</literal> operator is used to transpose whole 
25
 
          character strings in Scilab while Matlab realizes the transposition of each character.
26
 
        </para>
27
 
      </listitem>
28
 
    </itemizedlist>
29
 
    <para>  
30
 
      The function <literal>mtlb_0(A)</literal> is used by
31
 
      <literal>mfile2sci</literal> to replace <literal>A.'</literal> when it was not
32
 
      possible to know what were the operands while porting Matlab code to Scilab. This function will
33
 
      determine the correct semantic at run time. If you want to have a
34
 
      more efficient code it is possible to replace <literal>mtlb_0</literal> calls:
35
 
    </para>
36
 
    <itemizedlist>
37
 
      <listitem>
38
 
        <para>
39
 
          If <literal>A</literal> is not a character string matrix
40
 
          <literal>mtlb_0(A)</literal> may be replaced by <literal>A.'</literal>
41
 
        </para>
42
 
      </listitem>
43
 
    </itemizedlist>
44
 
    <para>
45
 
      Caution: <literal>mtlb_0</literal> has not to be used for hand coded functions.
46
 
    </para>
47
 
  </refsection>
48
 
  <refsection role="see also">
49
 
    <title>See Also</title>
50
 
    <simplelist type="inline">
51
 
      <member>
52
 
        <link linkend="MatlabScilab_character_strings">Matlab-Scilab_character_strings</link>
53
 
      </member>
54
 
    </simplelist>
55
 
  </refsection>
 
14
    <refnamediv>
 
15
        <refname>mtlb_0</refname>
 
16
        <refpurpose>Matlab non-conjugate transposition emulation function</refpurpose>
 
17
    </refnamediv>
 
18
    <refsection>
 
19
        <title>Description</title>
 
20
        <para>Matlab and Scilab non-conjugate transposition behave differently in some particular cases:</para>
 
21
        <itemizedlist>
 
22
            <listitem>
 
23
                <para>
 
24
                    With character strings operands: The <literal>.'</literal> operator is used to transpose whole 
 
25
                    character strings in Scilab while Matlab realizes the transposition of each character.
 
26
                </para>
 
27
            </listitem>
 
28
        </itemizedlist>
 
29
        <para>  
 
30
            The function <literal>mtlb_0(A)</literal> is used by
 
31
            <literal>mfile2sci</literal> to replace <literal>A.'</literal> when it was not
 
32
            possible to know what were the operands while porting Matlab code to Scilab. This function will
 
33
            determine the correct semantic at run time. If you want to have a
 
34
            more efficient code it is possible to replace <literal>mtlb_0</literal> calls:
 
35
        </para>
 
36
        <itemizedlist>
 
37
            <listitem>
 
38
                <para>
 
39
                    If <literal>A</literal> is not a character string matrix
 
40
                    <literal>mtlb_0(A)</literal> may be replaced by <literal>A.'</literal>
 
41
                </para>
 
42
            </listitem>
 
43
        </itemizedlist>
 
44
        <para>
 
45
            Caution: <literal>mtlb_0</literal> has not to be used for hand coded functions.
 
46
        </para>
 
47
    </refsection>
 
48
    <refsection role="see also">
 
49
        <title>See Also</title>
 
50
        <simplelist type="inline">
 
51
            <member>
 
52
                <link linkend="MatlabScilab_character_strings">Matlab-Scilab_character_strings</link>
 
53
            </member>
 
54
        </simplelist>
 
55
    </refsection>
56
56
</refentry>