File: st_deviation.xml

package info (click to toggle)
scilab 5.3.3-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 330,656 kB
file content (97 lines) | stat: -rw-r--r-- 3,363 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8"?>
<!--
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2000 - INRIA 
 * 
 * This file must be used under the terms of the CeCILL.
 * This source file is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at    
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 *
 -->
<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="st_deviation">
  <info>
    <pubdate>$LastChangedDate$</pubdate>
  </info>
  <refnamediv>
    <refname>st_deviation</refname>
    <refpurpose> écart-type des termes d'une matrice  </refpurpose>
  </refnamediv>
  <refnamediv xml:id="stdev">
    <refname>stdev</refname>
    <refpurpose> écart-type des termes d'une matrice  </refpurpose>
  </refnamediv>
  <refsynopsisdiv>
    <title>Séquence d'appel</title>
    <synopsis>y=st_deviation(x)
y=st_deviation(x,'r')
y=st_deviation(x,'c')
y=stdev(x)
y=stdev(x,'r')
y=stdev(x,'c')</synopsis>
  </refsynopsisdiv>
  <refsection>
    <title>Paramètres</title>
    <variablelist>
      <varlistentry>
        <term>x  </term>
        <listitem>
          <para>vecteur ou matrice réelle
</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>y  </term>
        <listitem>
          <para>scalaire ou vecteur
</para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsection>
  <refsection>
    <title>Description</title>
    <para>
    st_deviation calcule l'estimateur sans biais de l'écart-type (normalisé par N-1, ou N est le nombre d'échantillons).
  </para>
    <para>
    Pour un vecteur ou une matrice <literal>x</literal>, <literal>y=st_deviation(x)</literal> renvoie dans <literal>y</literal> l'écart-type des termes de <literal>x</literal>.
  </para>
    <para><literal>y=st_deviation(x,'r')</literal> (ou <literal>y=st_deviation(x,1)</literal>) est l'écart-type suivant l'indice de ligne. Chaque composante du vecteur ligne <literal>y</literal> contient l'écart-type de chaque colonne de <literal>x</literal>.
  </para>
    <para>
  </para>
    <para><literal>y=st_deviation(x,'c')</literal> (ou <literal>y=st_deviation(x,2)</literal>) est l'écart-type selon l'indice de colonne. Chaque composante du vecteur colonne <literal>y</literal> contient l'écart-type de chaque ligne de <literal>x</literal>.
  </para>
  </refsection>
  <refsection>
    <title>Exemples</title>
    <programlisting role="example"><![CDATA[ 
A=[1,2,10;7,7.1,7.01];
st_deviation(A)
st_deviation(A,'r')
st_deviation(A,'c')
 ]]></programlisting>
  </refsection>
  <refsection role="see also">
<title>Voir aussi</title>
    <simplelist type="inline">
      <member>
        <link linkend="sum">sum</link>
      </member>
      <member>
        <link linkend="median">median</link>
      </member>
      <member>
        <link linkend="mean">mean</link>
      </member>
      <member>
        <link linkend="nanstdev">nanstdev</link>
      </member>
      <member>
        <link linkend="stdevf">stdevf</link>
      </member>
    </simplelist>
  </refsection>
</refentry>