8 #ifndef LIN_GENERATORS_RANDOMS_HPP_ 9 #define LIN_GENERATORS_RANDOMS_HPP_ 11 #include "../core.hpp" 14 #include <type_traits> 55 seed(seed ^ 4101842887655102017LL),
68 return 5.42101086242752217E-20 * (seed * 2685821657736338717ULL);
83 double R = std::sqrt(-2.0*std::log(
rand()));
84 double T = 2.0*M_PI*
rand();
85 cached_rand = R*std::sin(T);
107 template <class C, std::enable_if_t<internal::has_traits<C>::value,
size_t> = 0>
109 typename C::Traits::eval_t t(r, c);
110 for (
lin::size_t i = 0; i < t.size(); i++) t(i) =
typename C::Traits::elem_t(rand.
rand());
129 template <class C, std::enable_if_t<internal::has_traits<C>::value,
size_t> = 0>
131 typename C::Traits::eval_t t(r, c);
132 for (
lin::size_t i = 0; i < t.size(); i++) t(i) =
typename C::Traits::elem_t(rand.
gaussian());
bool has_cached
has_cached is true if there's a cached standard normal available.
Definition: randoms.hpp:42
constexpr double gaussian()
Return a gaussian random number with mean 0 and std 1. Uses Box-Mueller transform with caching...
Definition: randoms.hpp:77
constexpr double rand()
Generates a uniform random number in the range zero to one.
Definition: randoms.hpp:63
double cached_rand
Value of a cached standard normal gassauisan random.
Definition: randoms.hpp:36
constexpr RandomsGenerator(unsigned long long seed=0)
Creates a random number generator based on the specified seed.
Definition: randoms.hpp:54
std::size_t size_t
Type tracking tensor dimensions and sizing.
Definition: config.hpp:33
constexpr auto rands(internal::RandomsGenerator &rand, size_t r=C::Traits::max_rows, size_t c=C::Traits::max_cols)
Generates a Matrix or Vector populated with uniform random values between 0 and 1.
Definition: randoms.hpp:108
Random number generator.
Definition: randoms.hpp:26
unsigned long long seed
Seed for the random number generator.
Definition: randoms.hpp:30
Definition: config.hpp:27
constexpr auto gaussians(internal::RandomsGenerator &rand, size_t r=C::Traits::max_rows, size_t c=C::Traits::max_cols)
Generates a Matrix or Vector populated with independent gaussian random variables with a mean of 0 an...
Definition: randoms.hpp:130