#include "../core.hpp"
#include <cstdint>
#include <type_traits>
Go to the source code of this file.
|
template<class C , std::enable_if_t< internal::has_traits< C >::value, size_t > = 0> |
constexpr auto | lin::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. More...
|
|
template<class C , std::enable_if_t< internal::has_traits< C >::value, size_t > = 0> |
constexpr auto | lin::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 and standard deviation of 1. Uses Box–Muller transform. More...
|
|
- Author
- Kyle Krol
-
Shihao Cao