~ubuntu-branches/ubuntu/trusty/scilab/trusty

« back to all changes in this revision

Viewing changes to modules/core/help/fr_FR/null.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-02 11:02:49 UTC
  • mfrom: (1.4.6)
  • Revision ID: package-import@ubuntu.com-20120802110249-0v5953emkp25geuz
Tags: 5.4.0-beta-2-1~exp1
* New upstream release
* Remove libscilab-java (remove upstream). Use libscilab2-java instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<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="fr" xml:id="null">
3
 
  <info>
4
 
    <pubdate>$LastChangedDate$</pubdate>
5
 
  </info>
6
 
  <refnamediv>
7
 
    <refname>null</refname>
8
 
    <refpurpose> suppression d'un terme d'une liste  </refpurpose>
9
 
  </refnamediv>
10
 
  <refsynopsisdiv>
11
 
    <title>Séquence d'appel</title>
12
 
    <synopsis>l(i)=null()</synopsis>
13
 
  </refsynopsisdiv>
14
 
  <refsection>
15
 
    <title>Description</title>
16
 
    <para>
17
 
      Suppression d'un terme d'une liste
18
 
    </para>
19
 
  </refsection>
20
 
  <refsection>
21
 
    <title>Exemples</title>
22
 
    <programlisting role="example"><![CDATA[ 
23
 
l=list(1,2,3);
24
 
l(2)=null() // get list(1,3)
25
 
 ]]></programlisting>
26
 
  </refsection>
27
 
  <refsection role="see also">
28
 
    <title>Voir aussi</title>
29
 
    <simplelist type="inline">
30
 
      <member>
31
 
        <link linkend="list">list</link>
32
 
      </member>
33
 
      <member>
34
 
        <link linkend="clear">clear</link>
35
 
      </member>
36
 
    </simplelist>
37
 
  </refsection>
38
 
</refentry>