Bpp/Statistics
Collector
C++
 
 
DESCRIPTION
 

This module provides facilities to collect statistical data.

 
SOURCE FILES
 

This section allows you to access the C++ source files of the module.

 
PARENT MODULE
 

This module is part of Bpp/Statistics.

 
INCLUDED FILES
 

The files listed below are included in the interface part of the module. So any module dependent of this module is also dependent of the files listed here.

  • <set>

  • <bpp/standard.hpp>

 
INTEGRATED NAMESPACES
 

The namespaces listed below are integrated in this module. That means any element declared in one of those namespaces can now be directly used by or from this module.

  • standard

 
CLASSES
 

Here are listed the classes provided by the module. To use one of them, you have to specify the namespace of the module.

 
clCollector
 
 
Declaration

class clCollector

 
Description

Represents a collector of real values. It provides statistical information on the collection. It is an abstract class.

 
Methods
 
clStorageCollector
 
 
Declaration

class clStorageCollector : public virtual clCollector

 
Description

Represents a collector of real values. All the values are stored for further analysis.

 
Types
  • type std_vector(tyReal) clValueS
    Type of the list of collected values.

  • type clValueS::const_iterator clValueIterator
    Type of the iterators on the list of collected values.

 
Attributes
  • clValueS values()
    List of the collected values. Reading access only.

 
Methods
 
clMeanCollector
 
 
Declaration

class clMeanCollector : public virtual clCollector

 
Description

Represents a collector of real values. It provides the mean value of the collection.

 
Methods
 
clVarianceCollector
 
 
Declaration

class clVarianceCollector : public clMeanCollector

 
Description

Represents a collector of real values. It provides the variance value of the collection.

 
Methods
 
clExtremaCollector
 
 
Declaration

class clExtremaCollector : public virtual clCollector

 
Description

Represents a collector of real values. It provides the minimum and maximum value of the collection.

 
Methods
 
clMedianCollector
 
 
Declaration

class clMedianCollector : public virtual clCollector

 
Description

Represents a collector of real values. It provides the median value of the collection.

 
Methods
 
clStatisticsCollector
 
 
Declaration

class clStatisticsCollector : public clVarianceCollector,public clExtremaCollector,public clMedianCollector

 
Description

Represents a collector of real values. It provides several statistical informations on the collection: mean, variance, minimum, maximum and median.

 
Methods
 
 
Copyright (c) 1999-2016 - Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation. See this license for more details (http://www.gnu.org).