3200
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
|
2 ## |
|
3 ## This program is free software; you can redistribute it and/or modify |
|
4 ## it under the terms of the GNU General Public License as published by |
|
5 ## the Free Software Foundation; either version 2, or (at your option) |
|
6 ## any later version. |
|
7 ## |
|
8 ## This program is distributed in the hope that it will be useful, but |
|
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
11 ## General Public License for more details. |
|
12 ## |
|
13 ## You should have received a copy of the GNU General Public License |
|
14 ## along with this file. If not, write to the Free Software Foundation, |
|
15 ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
16 |
|
17 ## usage: S = statistics (X) |
|
18 ## |
|
19 ## If X is a matrix, return a matrix S with the min, first quartile, |
|
20 ## median, third quartile, max, mean, std, skewness and kurtosis of the |
|
21 ## columns of X as its rows. |
|
22 ## |
|
23 ## If X is a vector, treat it as a column vector. |
|
24 |
|
25 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
26 ## Description: Compute basic statistics |
|
27 |
|
28 function S = statistics (X) |
|
29 |
|
30 if (nargin != 1) |
|
31 usage ("S = statistics (X)"); |
|
32 endif |
|
33 |
|
34 if (prod (size (X)) > 1) |
|
35 if (is_vector (X)) |
|
36 X = reshape (X, length (X), 1); |
|
37 endif |
|
38 for k=1:columns(X) |
3273
|
39 S(:,k) = [(min (X(:,k))); |
|
40 (empirical_inv ([0.25;0.5;0.75], X(:,k))); |
|
41 (max (X(:,k))); |
|
42 (mean (X(:,k))); |
|
43 (std (X(:,k))); |
|
44 (skewness (X(:,k))); |
|
45 (kurtosis (X(:,k)))]; |
3200
|
46 endfor |
|
47 else |
|
48 error ("statistics: invalid argument"); |
|
49 endif |
|
50 |
|
51 endfunction |