3200
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
|
19 |
3367
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} std (@var{x}) |
|
22 ## If @var{x} is a vector, compute the standard deviation of the elements |
|
23 ## of @var{x}. |
|
24 ## @iftex |
|
25 ## @tex |
|
26 ## $$ |
|
27 ## {\rm std} (x) = \sigma (x) = \sqrt{{\sum_{i=1}^N (x_i - \bar{x}) \over N - 1}} |
|
28 ## $$ |
|
29 ## @end tex |
|
30 ## @end iftex |
|
31 ## @ifinfo |
|
32 ## |
|
33 ## @example |
|
34 ## @group |
|
35 ## std (x) = sqrt (sumsq (x - mean (x)) / (n - 1)) |
|
36 ## @end group |
|
37 ## @end example |
|
38 ## @end ifinfo |
|
39 ## If @var{x} is a matrix, compute the standard deviation for |
|
40 ## each column and return them in a row vector. |
|
41 ## @end deftypefn |
3408
|
42 ## @seealso{mean and median} |
3200
|
43 |
|
44 ## Author: jwe |
|
45 |
|
46 function retval = std (a) |
|
47 |
|
48 if (nargin != 1) |
|
49 usage ("std (a)"); |
|
50 endif |
|
51 |
|
52 nr = rows (a); |
|
53 nc = columns (a); |
|
54 if (nc == 1 && nr == 1) |
|
55 retval = 0; |
|
56 elseif (nc == 1 || nr == 1) |
|
57 n = length (a); |
|
58 retval = sqrt (sumsq (a - mean (a)) / (n - 1)); |
|
59 elseif (nr > 1 && nc > 0) |
|
60 retval = sqrt (sumsq (a - ones (nr, 1) * mean (a)) / (nr - 1)); |
|
61 else |
|
62 error ("std: invalid matrix argument"); |
|
63 endif |
|
64 |
|
65 endfunction |