33 map<string, CVectorDouble>
results;
37 #define TEST_RESAMPLING(ALGOR) \ 38 mrpt::system::deleteFile(#ALGOR); \ 43 for (size_t i = 0; i < N_TESTS; i++) \ 45 mrpt::random::getRandomGenerator().drawUniformVector( \ 46 log_ws, MIN_LOG_WEIG, 0.0); \ 47 CParticleFilterCapable::log2linearWeights(log_ws, lin_ws); \ 48 CParticleFilterCapable::computeResampling( \ 49 CParticleFilter::ALGOR, log_ws, out_indxs); \ 50 hist_parts = mrpt::math::histogram(out_indxs, 0, M - 1, M, true); \ 51 vector<double> errs_hist = lin_ws - hist_parts; \ 52 ERR_MEANs.push_back(mrpt::math::mean(errs_hist)); \ 53 ERR_STDs.push_back(mrpt::math::stddev(errs_hist)); \ 55 printf("%s: ERR_MEAN %e\n", #ALGOR, mrpt::math::mean(ERR_MEANs)); \ 56 printf("%s: ERR_STD %f\n", #ALGOR, mrpt::math::mean(ERR_STDs)); \ 57 results[#ALGOR].push_back(mrpt::math::mean(ERR_STDs)); 64 vector<double> log_ws;
65 std::vector<size_t> out_indxs;
73 vector<double> lin_ws;
74 vector<double> hist_parts;
75 vector<double> ERR_MEANs;
76 vector<double> ERR_STDs;
90 for (
double LL = -2; LL <= 2.01; LL += 0.08)
92 double L = pow(10.0, LL);
95 printf(
"MIN_LOG_W=%f\n", L);
139 cerr <<
"Untyped excepcion!!";
A namespace of pseudo-random numbers generators of diferent distributions.
The namespace for Bayesian filtering algorithm: different particle filters and Kalman filter algorith...
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
void push_back(const T &val)
This base provides a set of functions for maths stuff.
map< string, CVectorDouble > results
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
#define TEST_RESAMPLING(ALGOR)
bool vectorToTextFile(const std::vector< float > &vec, const std::string &fileName, bool append=false, bool byRows=false)
A useful function for debugging, which saves a std::vector into a text file (compat.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.