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

« back to all changes in this revision

Viewing changes to modules/fileio/help/en_US/maxfiles.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: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="maxfiles">
15
 
  <refnamediv>
16
 
    <refname>maxfiles</refname>
17
 
    <refpurpose>sets the limit for the number of files a Scilab is allowed to have open simultaneously</refpurpose>
18
 
  </refnamediv>
19
 
  <refsynopsisdiv>
20
 
    <title>Calling Sequence</title>
21
 
    <synopsis>r = maxfiles(newnumbermax)</synopsis>
22
 
  </refsynopsisdiv>
23
 
  <refsection>
24
 
    <title>Arguments</title>
25
 
    <variablelist>
26
 
      <varlistentry>
27
 
        <term>newnumbermax</term>
28
 
        <listitem>
29
 
          <para>an integer the new value.</para>
30
 
        </listitem>
31
 
      </varlistentry>
32
 
      <varlistentry>
33
 
        <term>r</term>
34
 
        <listitem>
35
 
          <para>an integer: effective new value.</para>
36
 
        </listitem>
37
 
      </varlistentry>
38
 
    </variablelist>
39
 
  </refsection>
40
 
  <refsection>
41
 
    <title>Description</title>
42
 
    <para>
43
 
      <function>maxfiles</function> sets the limit for the number of files a Scilab is allowed to have open simultaneously.
44
 
    </para>
45
 
    <para>Minimum : 20</para>
46
 
    <para>Maximum : 100</para>
47
 
    <para>Default : 20</para>
48
 
  </refsection>
49
 
  <refsection>
50
 
    <title>Examples</title>
51
 
    <programlisting role="example"><![CDATA[
 
15
    <refnamediv>
 
16
        <refname>maxfiles</refname>
 
17
        <refpurpose>sets the limit for the number of files a Scilab is allowed to have open simultaneously</refpurpose>
 
18
    </refnamediv>
 
19
    <refsynopsisdiv>
 
20
        <title>Calling Sequence</title>
 
21
        <synopsis>r = maxfiles(newnumbermax)</synopsis>
 
22
    </refsynopsisdiv>
 
23
    <refsection>
 
24
        <title>Arguments</title>
 
25
        <variablelist>
 
26
            <varlistentry>
 
27
                <term>newnumbermax</term>
 
28
                <listitem>
 
29
                    <para>an integer the new value.</para>
 
30
                </listitem>
 
31
            </varlistentry>
 
32
            <varlistentry>
 
33
                <term>r</term>
 
34
                <listitem>
 
35
                    <para>an integer: effective new value.</para>
 
36
                </listitem>
 
37
            </varlistentry>
 
38
        </variablelist>
 
39
    </refsection>
 
40
    <refsection>
 
41
        <title>Description</title>
 
42
        <para>
 
43
            <function>maxfiles</function> sets the limit for the number of files a Scilab is allowed to have open simultaneously.
 
44
        </para>
 
45
        <para>Minimum : 20</para>
 
46
        <para>Maximum : 100</para>
 
47
        <para>Default : 20</para>
 
48
    </refsection>
 
49
    <refsection>
 
50
        <title>Examples</title>
 
51
        <programlisting role="example"><![CDATA[
52
52
r = maxfiles(50);
53
53
 ]]></programlisting>
54
 
  </refsection>
55
 
  <refsection role="see also">
56
 
    <title>See Also</title>
57
 
    <simplelist type="inline">
58
 
      <member>
59
 
        <link linkend="mopen">mopen</link>
60
 
      </member>
61
 
    </simplelist>
62
 
  </refsection>
 
54
    </refsection>
 
55
    <refsection role="see also">
 
56
        <title>See Also</title>
 
57
        <simplelist type="inline">
 
58
            <member>
 
59
                <link linkend="mopen">mopen</link>
 
60
            </member>
 
61
        </simplelist>
 
62
    </refsection>
63
63
</refentry>