ProteoWizard
Functions | Variables
StatsTest.cpp File Reference
#include "Stats.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include <cstring>

Go to the source code of this file.

Functions

void test ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

void test ( )

Definition at line 37 of file StatsTest.cpp.

References pwiz::math::Stats::covariance(), e(), epsilon, pwiz::math::Stats::mean(), pwiz::math::Stats::meanOuterProduct(), os_, unit_assert_equal, unit_assert_matrices_equal, and unit_assert_vectors_equal.

{
a(0) = 1;
a(1) = 2;
b(0) = 3;
b(1) = 4;
c(0) = 5;
c(1) = 6;
data.push_back(a);
data.push_back(b);
data.push_back(c);
Stats stats(data);
if (os_) *os_ << "mean: " << stats.mean() << endl;
if (os_) *os_ << "covariance: " << stats.covariance() << endl;
// mean & covariance computed using good old-fashioned reckoning
mean(0) = 3;
mean(1) = 4;
Stats::matrix_type covariance(2,2);
covariance(0,0) = covariance(0,1) = covariance(1,0) = covariance(1,1) = 8/3.;
// verify results
const double epsilon = 1e-12;
unit_assert_vectors_equal(stats.mean(), mean, epsilon);
unit_assert_matrices_equal(stats.covariance(), covariance, epsilon);
double rms0_good = sqrt(35./3);
double rms1_good = sqrt(56./3);
double rms0_test = sqrt(stats.meanOuterProduct()(0,0));
double rms1_test = sqrt(stats.meanOuterProduct()(1,1));
unit_assert_equal(rms0_test, rms0_good, epsilon);
unit_assert_equal(rms1_test, rms1_good, epsilon);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 81 of file StatsTest.cpp.

References e(), os_, test(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
if (os_) *os_ << "StatsTest\n";
test();
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 34 of file StatsTest.cpp.