~ubuntu-branches/ubuntu/lucid/scilab/lucid

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/fr_FR/cotg.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-04-28 18:47:03 UTC
  • mfrom: (1.1.7 upstream) (4.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090428184703-7thddz8vtwqmxmx2
Tags: 5.1.1-4
* librefblas3-dev does not exist (yet). Thanks to Jose Ramon
* Do not stop when ocamlopt is not available on the arch 
  (ocaml-not-available.diff)
* Provide a clear error message for archs where modelicac compiler is 
  not available (modelicac-not-available.diff)
* scilab startup script moved from package scilab => scilab-bin (because of
  the ocamlopt problem, I cannot predict if modelicac will be available or
  not. Therefor, I ship usr/bin/ instead of binary per binary. This will
  also simplifies the packaging of Scilab 5.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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="cotg">
 
2
<refentry version="5.0-subset Scilab" xml:id="cotg" xml:lang="fr"
 
3
          xmlns="http://docbook.org/ns/docbook"
 
4
          xmlns:xlink="http://www.w3.org/1999/xlink"
 
5
          xmlns:svg="http://www.w3.org/2000/svg"
 
6
          xmlns:ns5="http://www.w3.org/1999/xhtml"
 
7
          xmlns:mml="http://www.w3.org/1998/Math/MathML"
 
8
          xmlns:db="http://docbook.org/ns/docbook">
3
9
  <info>
4
10
    <pubdate>$LastChangedDate$</pubdate>
5
11
  </info>
 
12
 
6
13
  <refnamediv>
7
14
    <refname>cotg</refname>
8
 
    <refpurpose> cotangente  </refpurpose>
 
15
 
 
16
    <refpurpose>cotangente</refpurpose>
9
17
  </refnamediv>
 
18
 
10
19
  <refsynopsisdiv>
11
20
    <title>S�quence d'appel</title>
 
21
 
12
22
    <synopsis>[t]=cotg(x)</synopsis>
13
23
  </refsynopsisdiv>
 
24
 
14
25
  <refsection>
15
26
    <title>Param�tres</title>
 
27
 
16
28
    <variablelist>
17
29
      <varlistentry>
18
 
        <term>x,t  </term>
 
30
        <term>x,t</term>
 
31
 
19
32
        <listitem>
20
 
          <para>vecteur ou matrice (r�elle ou complexe)
21
 
</para>
 
33
          <para>vecteur ou matrice (r�elle ou complexe)</para>
22
34
        </listitem>
23
35
      </varlistentry>
24
36
    </variablelist>
25
37
  </refsection>
 
38
 
26
39
  <refsection>
27
40
    <title>Description</title>
28
 
    <para>
29
 
    Les �l�ments de <literal>t</literal> sont les cotangentes des �l�ments de <literal>x</literal>.
30
 
    <literal>t=cos(x)./sin(x)</literal>
31
 
  </para>
 
41
 
 
42
    <para>Les �l�ments de <literal>t</literal> sont les cotangentes des
 
43
    �l�ments de <literal>x</literal>.
 
44
    <literal>t=cos(x)./sin(x)</literal></para>
32
45
  </refsection>
 
46
 
33
47
  <refsection>
34
48
    <title>Exemples</title>
35
 
    <programlisting role="example"><![CDATA[
 
49
 
 
50
    <programlisting role="example"> 
36
51
x=[1,%i];
37
52
cotg(x)-cos(x)./sin(x)
38
 
 ]]></programlisting>
 
53
 </programlisting>
39
54
  </refsection>
 
55
 
40
56
  <refsection>
41
57
    <title>Voir Aussi</title>
 
58
 
42
59
    <simplelist type="inline">
43
 
      <member>
44
 
        <link linkend="tan">tan</link>
45
 
      </member>
 
60
      <member><link linkend="tan">tan</link></member>
46
61
    </simplelist>
47
62
  </refsection>
48
63
</refentry>