Back to Continuous random variables
// Description: An aggregate file for continuous random variables
#ifndef PASTELSYS_RANDOM_CONTINUOUS_H
#define PASTELSYS_RANDOM_CONTINUOUS_H
#include "pastel/sys/random/random_uniform.h"
#include "pastel/sys/random/random_triangle.h"
#include "pastel/sys/random/random_gaussian.h"
#include "pastel/sys/random/random_generalizedgaussian.h"
#include "pastel/sys/random/random_lognormal.h"
#include "pastel/sys/random/random_exponential.h"
#include "pastel/sys/random/random_laplace.h"
#include "pastel/sys/random/random_gamma.h"
#include "pastel/sys/random/random_beta.h"
#include "pastel/sys/random/random_dirichlet.h"
#include "pastel/sys/random/random_cauchy.h"
#include "pastel/sys/random/random_chisquared.h"
#endif