Diploma Thesis Percolation Simulation
C++ Sourcecode Documentation

www.AndreasKrueger.de/thesis/code

Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

statistics::muvarskewkurt< RES > Class Template Reference

#include <statistics.h>

Inheritance diagram for statistics::muvarskewkurt:

Inheritance graph
[legend]
Collaboration diagram for statistics::muvarskewkurt< RES >:

Collaboration graph
[legend]
List of all members.

Public Methods

void zero ()
void sdev_of_mean (long N)

Public Attributes

measure< RES > mu
measure< RES > variance
measure< RES > skewness
measure< RES > kurtosis

template<class RES>
class statistics::muvarskewkurt< RES >


Member Function Documentation

template<class RES>
void statistics::muvarskewkurt< RES >::sdev_of_mean long    N
 

Definition at line 257 of file statistics.h.

References statistics::muvarskewkurt< RES >::mu, measure< T >::sdev(), measure< RES >::sdev(), measure< T >::set_sdev(), measure< RES >::set_sdev(), and sqrt().

00257                                            {
00258         mu.set_sdev              (mu.sdev()              /sqrt((RES)n)); // manipulation! sdev of mean ~ 1/sqrt(nn)
00259         variance.set_sdev(variance.sdev()/sqrt((RES)n)); // manipulation! sdev of mean ~ 1/sqrt(nn)
00260         skewness.set_sdev(skewness.sdev()/sqrt((RES)n)); // manipulation! sdev of mean ~ 1/sqrt(nn)
00261         kurtosis.set_sdev(kurtosis.sdev()/sqrt((RES)n)); // manipulation! sdev of mean ~ 1/sqrt(nn)
00262 }

template<class RES>
void statistics::muvarskewkurt< RES >::zero  
 

Definition at line 245 of file statistics.h.

References statistics::muvarskewkurt< RES >::mu.

00245                               {
00246         mu=(RES)0;
00247         variance=(RES)0;
00248         skewness=(RES)0;
00249         kurtosis=(RES)0;
00250 }


Member Data Documentation

template<class RES>
measure<RES> statistics::muvarskewkurt< RES >::kurtosis
 

Definition at line 240 of file statistics.h.

Referenced by statistics::calculate_moments().

template<class RES>
measure<RES> statistics::muvarskewkurt< RES >::mu
 

Definition at line 237 of file statistics.h.

Referenced by statistics::calculate_moments(), statistics::muvarskewkurt< RES >::sdev_of_mean(), and statistics::muvarskewkurt< RES >::zero().

template<class RES>
measure<RES> statistics::muvarskewkurt< RES >::skewness
 

Definition at line 239 of file statistics.h.

Referenced by statistics::calculate_moments().

template<class RES>
measure<RES> statistics::muvarskewkurt< RES >::variance
 

Definition at line 238 of file statistics.h.

Referenced by statistics::calculate_moments().


The documentation for this class was generated from the following file:




Diploma Thesis Sourcecode Documentation
check out the text and the executable binaries

www.AndreasKrueger.de/thesis/code