ProteoWizard
|
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/io.hpp>
#include "pwiz/utility/misc/Std.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "Types.hpp"
#include "qr.hpp"
Go to the source code of this file.
Functions | |
template<class matrix_type > | |
bool | isUpperTriangular (const matrix_type &A, double eps) |
void | testReflector () |
void | testQR () |
void | testRectangularQR () |
int | main (int argc, char **argv) |
Variables | |
ostream * | os_ = 0 |
const double | epsilon = 1e-12 |
bool isUpperTriangular | ( | const matrix_type & | A, |
double | eps | ||
) |
Definition at line 39 of file qrTest.cpp.
References A.
Referenced by testQR(), and testRectangularQR().
void testReflector | ( | ) |
Definition at line 56 of file qrTest.cpp.
References epsilon, F, os_, pwiz::math::Reflector(), unit_assert_equal, and x.
Referenced by main().
void testQR | ( | ) |
Definition at line 82 of file qrTest.cpp.
References A, diff(), epsilon, isUpperTriangular(), os_, unit_assert, and unit_assert_equal.
Referenced by main().
void testRectangularQR | ( | ) |
Definition at line 120 of file qrTest.cpp.
References A, diff(), epsilon, isUpperTriangular(), os_, unit_assert, and unit_assert_equal.
Referenced by main().
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 158 of file qrTest.cpp.
References os_, testQR(), testRectangularQR(), and testReflector().
ostream* os_ = 0 |
Definition at line 34 of file qrTest.cpp.
const double epsilon = 1e-12 |
Definition at line 35 of file qrTest.cpp.