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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/fr_FR/exponential/polar.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:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
4
 * Copyright (C) 2008 - INRIA
 
5
 * 
 
6
 * This file must be used under the terms of the CeCILL.
 
7
 * This source file is licensed as described in the file COPYING, which
 
8
 * you should have received as part of this distribution.  The terms
 
9
 * are also available at    
 
10
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 
11
 *
 
12
 -->
 
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="fr" xml:id="polar">
 
14
  <refnamediv>
 
15
    <refname>polar</refname>
 
16
    <refpurpose> forme polaire  </refpurpose>
 
17
  </refnamediv>
 
18
  <refsynopsisdiv>
 
19
    <title>Séquence d'appel</title>
 
20
    <synopsis>[Ro,Theta]=polar(A)</synopsis>
 
21
  </refsynopsisdiv>
 
22
  <refsection>
 
23
    <title>Paramètres</title>
 
24
    <variablelist>
 
25
      <varlistentry>
 
26
        <term>A  </term>
 
27
        <listitem>
 
28
          <para>matrice carrée réelle ou complexe
 
29
          </para>
 
30
        </listitem>
 
31
      </varlistentry>
 
32
      <varlistentry>
 
33
        <term>Ro, Theta  </term>
 
34
        <listitem>
 
35
          <para>matrices réelles
 
36
          </para>
 
37
        </listitem>
 
38
      </varlistentry>
 
39
    </variablelist>
 
40
  </refsection>
 
41
  <refsection>
 
42
    <title>Description</title>
 
43
    <para>
 
44
      <literal>[Ro,Theta]=polar(A)</literal> renvoie la forme polaire de
 
45
      <literal>A</literal> c'est à dire :<literal>A=Ro*expm(%i*Theta)</literal>
 
46
      <literal>Ro</literal> symétrique &gt;=0 et <literal>Theta</literal>
 
47
      hermitienne &gt;=0.
 
48
    </para>
 
49
  </refsection>
 
50
  <refsection>
 
51
    <title>Exemples</title>
 
52
    <programlisting role="example"><![CDATA[ 
 
53
A=rand(5,5);
 
54
[Ro,Theta]=polar(A);
 
55
norm(A-Ro*expm(%i*Theta),1)
 
56
 ]]></programlisting>
 
57
  </refsection>
 
58
  <refsection role="see also">
 
59
    <title>Voir aussi</title>
 
60
    <simplelist type="inline">
 
61
      <member>
 
62
        <link linkend="expm">expm</link>
 
63
      </member>
 
64
      <member>
 
65
        <link linkend="svd">svd</link>
 
66
      </member>
 
67
    </simplelist>
 
68
  </refsection>
 
69
</refentry>