#include "vector.h"
#include "matrix.h"
#include "constants.h"
#include "solver/gauss_jordan.h"
#include <signal.h>


Go to the source code of this file.
Namespaces | |
| namespace | TBCI |
Defines | |
| #define | DELTA(i, j) ((i==j)?1:0) |
| #define | DELTAX 1e-30 |
| #define | CON2 2.0 |
| #define | CON SQRT2 |
| #define | BIG 1.0e30 |
| #define | NTAB 10 |
| #define | SAFE 2.0 |
Functions | |
| template<typename T> | |
| void | TBCI::do_nothing (T dummy) |
| template<typename T> | |
| int | TBCI::basis_trafo (long int value, long int basis, Vector< T > &index) |
| template<typename T> | |
| T | TBCI::partial_del (T(*func)(const Vector< T > &, const Vector< T > &), const Vector< T > &x, const Vector< T > &p, int mu, T h, T &err) |
| template<typename T> | |
| T | TBCI::chisq (Vector< T > &data, Vector< T > &func, Vector< T > &sig) |
| template<typename T> | |
| T | TBCI::chisquare (T(*func)(const Vector< T > &, const Vector< T > &), Vector< T > ¶m, Vector< T > &x, Vector< T > &y, Vector< T > &sigma) |
| template<typename T> | |
| TVector< T > | TBCI::grid_min (T(*func)(const Vector< T > &, const Vector< T > &), Vector< T > &x, Vector< T > &y, Vector< T > &sig, Vector< T > &pmin, Vector< T > &pmax, Vector< T > &lambda, long int res, int max_it, char v) |
| template<typename T> | |
| T | TBCI::lev_mar (Vector< T > &x, Vector< T > &y, Vector< T > &sig, Vector< T > ¶m, Vector< T > &plow, Vector< T > &phigh, T(*func)(const Vector< T > &, const Vector< T > &), Vector< T > lambda, Vector< T > &lscale, T tol, int iter, char ver) |
| template<typename T> | |
| void | TBCI::hpsort (Matrix< T > &x, int pos) |
Definition in file my_nr.h.
1.5.6