diff options
author | rupak | 2020-01-21 15:20:25 +0530 |
---|---|---|
committer | rupak | 2020-01-21 15:20:25 +0530 |
commit | 36aca8aaaee5cf8cb5452268fd07c0b558b000a3 (patch) | |
tree | 97a39a1561849978ea3d45228d3a51c74bc46ac0 /help/fr_FR/scilab_sum.xml | |
parent | 777c4c1cc8e7d2632149bd87b79e60fd2f0e7e50 (diff) | |
download | FOSSEE-Communication-Systems-Toolbox-36aca8aaaee5cf8cb5452268fd07c0b558b000a3.tar.gz FOSSEE-Communication-Systems-Toolbox-36aca8aaaee5cf8cb5452268fd07c0b558b000a3.tar.bz2 FOSSEE-Communication-Systems-Toolbox-36aca8aaaee5cf8cb5452268fd07c0b558b000a3.zip |
created a scilab toolbox structure
Diffstat (limited to 'help/fr_FR/scilab_sum.xml')
-rw-r--r-- | help/fr_FR/scilab_sum.xml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/help/fr_FR/scilab_sum.xml b/help/fr_FR/scilab_sum.xml new file mode 100644 index 0000000..5b14618 --- /dev/null +++ b/help/fr_FR/scilab_sum.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * + * This file is released under the 3-clause BSD license. See COPYING-BSD. + * + --> +<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns3="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="scilab_sum" xml:lang="en"> + <refnamediv> + <refname>scilab_sum</refname> + <refpurpose>calcule de la somme depuis du code scilab</refpurpose> + </refnamediv> + <refsynopsisdiv> + <title>Séquence d'appel</title> + <synopsis>a = scilab_sum(b,c)</synopsis> + </refsynopsisdiv> + <refsection> + <title>Arguments</title> + <variablelist> + <varlistentry> + <term>b</term> + <listitem> + <para>Premier argument d'entrée</para> + </listitem> + </varlistentry> + <varlistentry> + <term>c</term> + <listitem> + <para>Second argument d'entrée</para> + </listitem> + </varlistentry> + <varlistentry> + <term>a</term> + <listitem> + <para>Argument de sortie</para> + </listitem> + </varlistentry> + </variablelist> + </refsection> + <refsection> + <title>Description</title> + <para>calcule la somme.</para> + <para>Ajoutez ici plus d'informations sur cette fonction </para> + <para> + LaTeX peut etre utilisé pour afficher l'équation: Dans ce cas, le rendu pourrait être <latex>$x+y$</latex> + </para> + </refsection> + <refsection> + <title>Exemples</title> + <programlisting role="example">scilab_sum(3,4)</programlisting> + </refsection> + <refsection role="see also"> + <title>Voir aussi</title> + <simplelist type="inline"> + <member> + <link linkend="c_sum">c_sum</link> + </member> + <member> + <link type="scilab" linkend="scilab.help/sum">Lien vers la page d'aide sum de Scilab</link> + </member> + </simplelist> + </refsection> +</refentry> |