Robot Simulator of the Robotics Group for Self-Organization of Control  0.8.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
analysationmodes.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2005-2011 LpzRobots development team *
3  * Georg Martius <georg dot martius at web dot de> *
4  * Frank Guettler <guettler at informatik dot uni-leipzig dot de *
5  * Frank Hesse <frank at nld dot ds dot mpg dot de> *
6  * Ralf Der <ralfder at mis dot mpg dot de> *
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  * This program is distributed in the hope that it will be useful, *
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16  * GNU General Public License for more details. *
17  * *
18  * You should have received a copy of the GNU General Public License *
19  * along with this program; if not, write to the *
20  * Free Software Foundation, Inc., *
21  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22  * *
23  ***************************************************************************/
24 #ifndef _ANALYSATIONMODES_H
25 #define _ANALYSATIONMODES_H
26 
27 /**
28  * usage of the statistictools with different analysation modes modes (examples):
29  *
30  */
31 
32 
33 /** analysation modes of statistical types. If you add a analysation mode, you have
34  * naturally to implement this analysation mode in statisticmeasure.cpp -
35  * see method StatisticMeasure::step() !
36  */
38  /// returns the average value
40  /// returns the median value
42  /// returns the minimum value
44  /// returns the maximum value
46  /// returns the range of the values
48  /// returns the quartile Q_(1/4) value
50  /// returns the quartile Q_(3/4) value
52  /// returns the whisker (1.5*IQR) value
54  /// returns the whisker1 value
56  /// returns the whisker3 value
58  /// returns the inter quartile range (IQR) value
60  /// returns the count of extreme values
62  /// returns the special extreme value
64  /// returns the best value
66 };
67 
68 #endif //_ANALYSATIONMODES_H
returns the count of extreme values
Definition: analysationmodes.h:61
returns the quartile Q_(3/4) value
Definition: analysationmodes.h:51
returns the quartile Q_(1/4) value
Definition: analysationmodes.h:49
returns the best value
Definition: analysationmodes.h:65
returns the whisker1 value
Definition: analysationmodes.h:55
returns the minimum value
Definition: analysationmodes.h:43
returns the average value
Definition: analysationmodes.h:39
returns the inter quartile range (IQR) value
Definition: analysationmodes.h:59
returns the range of the values
Definition: analysationmodes.h:47
returns the median value
Definition: analysationmodes.h:41
returns the maximum value
Definition: analysationmodes.h:45
returns the whisker3 value
Definition: analysationmodes.h:57
returns the whisker (1.5*IQR) value
Definition: analysationmodes.h:53
returns the special extreme value
Definition: analysationmodes.h:63
AnalysationMode
usage of the statistictools with different analysation modes modes (examples):
Definition: analysationmodes.h:37