diff --git a/docs.html b/docs.html index 1f44bc1b..fdfaebd8 100644 --- a/docs.html +++ b/docs.html @@ -549,13 +549,14 @@ Conrad Sanderson and Ryan Curtin. constants pi, inf, NaN, eps, speed of light, ... wall_clock timer for measuring number of elapsed seconds -output streams streams for printing warnings and errors +RNG seed setting functions for changing RNG seeds +output streams streams for printing warnings and errors uword / sword shorthand for unsigned and signed integers cx_double / cx_float shorthand for std::complex<double> and std::complex<float> -Matlab/Armadillo syntax differences examples of Matlab syntax and conceptually corresponding Armadillo syntax +Matlab/Armadillo syntax differences examples of Matlab syntax and conceptually corresponding Armadillo syntax example program short example program config.hpp configuration options -API additions API stability and list of API additions +API additions API stability and list of API additions @@ -18030,7 +18031,7 @@ There are two functions to change the seed used by the random number generator ( - arma_rng::set_seed(value) + arma_rng::set_seed( value )  
@@ -18060,7 +18061,7 @@ Since Armadillo 12.6.2, the default RNG on all systems is the 64-bit version of
  • -Caveat: when using a framework such as OpenMP for multi-threading and the underlying system properly supports thread_local, +Caveat: when using a framework such as OpenMP for multi-threading and the underlying system supports the thread_local storage specifier, the above functions change the seed only within the thread they are running on

  • @@ -18099,11 +18100,11 @@ See also: shuffle(), randperm() -
  • Pseudo-random number generator in Wikipedia
  • -
  • Mersenne Twister in Wikipedia
  • -
  • /dev/random in Wikipedia
  • -
  • std::mersenne_twister_engine in cppreference.com
  • -
  • std::random_device in cppreference.com
  • +
  • Pseudo-random number generator in Wikipedia
  • +
  • Mersenne Twister in Wikipedia
  • +
  • /dev/random in Wikipedia
  • +
  • std::mersenne_twister_engine in cppreference.com
  • +
  • std::random_device in cppreference.com