ProteoWizard
Functions | Variables
MatrixTest.cpp File Reference
#include "Matrix.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include <limits>

Go to the source code of this file.

Functions

void testMatrix ()
int main ()

Variables

const double epsilon = 2 * numeric_limits<double>::epsilon()

Function Documentation

void testMatrix ( )

Definition at line 37 of file MatrixTest.cpp.

References epsilon, and unit_assert_equal.

Referenced by main().

{
// initialize a Matrix
Matrix m(2,4);
// insert some stuff
m.insert(3.141, 0,0);
m.insert(2.718, 1,3);
// access some stuff
unit_assert_equal(m.access(0,0), 3.141, epsilon);
unit_assert_equal(m.access(1,3), 2.718, epsilon);
}
int main ( )

Definition at line 52 of file MatrixTest.cpp.

References testMatrix().

{
return 0;
}

Variable Documentation

const double epsilon = 2 * numeric_limits<double>::epsilon()