~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/statistics/nanstdev.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>nanstdev</TITLE>
 
6
  <TYPE>  </TYPE>
 
7
  <DATE>July 2000</DATE>
 
8
  <SHORT_DESCRIPTION name="nanstdev"> standard deviation (ignoring the NANs).  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>s=nanstdev(x)  </CALLING_SEQUENCE_ITEM>
 
11
    <CALLING_SEQUENCE_ITEM>s=nanstdev(x,'r') or m=nanstdev(x,1)  </CALLING_SEQUENCE_ITEM>
 
12
    <CALLING_SEQUENCE_ITEM>s=nanstdev(x,'c') or m=nanstdev(x,2)  </CALLING_SEQUENCE_ITEM>
 
13
  </CALLING_SEQUENCE>
 
14
  <PARAM>
 
15
    <PARAM_INDENT>
 
16
      <PARAM_ITEM>
 
17
        <PARAM_NAME>x</PARAM_NAME>
 
18
        <PARAM_DESCRIPTION>
 
19
          <SP>real or complex vector or matrix</SP>
 
20
        </PARAM_DESCRIPTION>
 
21
      </PARAM_ITEM>
 
22
    </PARAM_INDENT>
 
23
  </PARAM>
 
24
  <DESCRIPTION>
 
25
    <P>
 
26
    This function   computes the standard  deviation  of the
 
27
    values of  a vector or  matrix   <VERB> x</VERB> (ignoring  the
 
28
    NANs).</P>
 
29
    <P>
 
30
    For a vector or a matrix <VERB> x</VERB>, <VERB> s=nanstdev(x)</VERB>
 
31
    returns in the scalar  <VERB> s</VERB> the  standard deviation
 
32
    of all the entries of <VERB>x</VERB> (ignoring the NANs).</P>
 
33
    <P><VERB>s=nanstdev(x,'r')</VERB>        (or,  equivalently,   <VERB>
 
34
    s=nanstdev(x,1) </VERB>) is  the rowwise standard deviation.
 
35
    It returns in each entry of the row  vector <VERB> s</VERB> the
 
36
    standard deviation of each column of <VERB> x</VERB> (ignoring
 
37
    the NANs).</P>
 
38
    <P><VERB>s=nanstdev(x,'c')</VERB>          (or,      equivalently,
 
39
    <VERB>s=nanstdev(x,2)</VERB>)   is the columnwise      standard
 
40
    deviation. It returns in each entry of the column vector
 
41
    <VERB>s</VERB> the standard  deviation of  each row of  <VERB>x</VERB>
 
42
    (ignoring the NANs).</P>
 
43
    <P>
 
44
    In Labostat, NAN values stand for missing values in tables.</P>
 
45
  </DESCRIPTION>
 
46
  <EXAMPLE>
 
47
<![CDATA[
 
48
 
 
49
x=[0.2113249 0.0002211 0.6653811;
 
50
   0.7560439 %nan      0.6283918;
 
51
   0.3       0.2       0.5      ];
 
52
s=nanstdev(x)
 
53
s=nanstdev(x,'r')
 
54
s=nanstdev(x,'c')
 
55
 ]]>
 
56
  </EXAMPLE>
 
57
  <AUTHOR> Carlos Klimann</AUTHOR>
 
58
  <BIBLIO>
 
59
    <P>
 
60
    Wonacott, T.H. &amp; Wonacott, R.J.; Introductory Statistics, fifth edition, J.Wiley &amp; Sons, 1990.</P>
 
61
  </BIBLIO>
 
62
</MAN>