| Diploma Thesis Percolation Simulation C++ Sourcecode Documentation |
#include <statistics.h>
Inheritance diagram for statistics::muvarskewkurt:


Public Methods | |
| void | zero () |
| void | sdev_of_mean (long N) |
Public Attributes | |
| measure< RES > | mu |
| measure< RES > | variance |
| measure< RES > | skewness |
| measure< RES > | kurtosis |
|
||||||||||
|
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 }
|
|
|||||||||
|
Definition at line 245 of file statistics.h. References statistics::muvarskewkurt< RES >::mu.
|
|
|||||
|
Definition at line 240 of file statistics.h. Referenced by statistics::calculate_moments(). |
|
|||||
|
Definition at line 237 of file statistics.h. Referenced by statistics::calculate_moments(), statistics::muvarskewkurt< RES >::sdev_of_mean(), and statistics::muvarskewkurt< RES >::zero(). |
|
|||||
|
Definition at line 239 of file statistics.h. Referenced by statistics::calculate_moments(). |
|
|||||
|
Definition at line 238 of file statistics.h. Referenced by statistics::calculate_moments(). |
| Diploma Thesis Sourcecode
Documentation check out the text and the executable binaries |