mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
mx::math::randomT< typeT, _ranengT, _randistT > Class Template Reference

template<class typeT, class _ranengT, class _randistT>
class mx::math::randomT< typeT, _ranengT, _randistT >

A random number type, which functions like any other arithmetic type.

Combines a random engine, and a random distribution. Using the type conversion operator randomT returns the next random deviate whenever it is referenced.

Example:

//This can also be done using the alias definition mx::math::normDistT.
double d1 = norm_distd; //get a normally distributed value
double d2 = norm_distd; //get the next normally distributed value
A random number type, which functions like any other arithmetic type.
Definition randomT.hpp:64
void seed(typename ranengT::result_type seedval)
Set the seed of the random engine.
Definition randomT.hpp:101
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Test:
Verify compilation and basic operation of randomT with std::distributions [testdoc]" <p> <p>Verify compilation and basic operation of randomT with the Laplace distribution \ref tests_math_randomT_basic_laplace "[test doc]"

Definition at line 63 of file randomT.hpp.

#include <math/randomT.hpp>

Public Types

typedef _randistT randistT
 Typedef for the distribution type.
 
typedef _ranengT ranengT
 Typedef for the engine type.
 

Public Member Functions

 randomT (bool doSeed=true)
 Constructor.
 
 operator typeT ()
 The conversion operator, returns the next value in the sequence, according to the distribution.
 
void seed (typename ranengT::result_type seedval)
 Set the seed of the random engine.
 
void seed ()
 Seed the random engine with a good value.
 

Public Attributes

_randistT distribution
 The random distribution.
 
ranengT engine
 The random engine.
 

Member Typedef Documentation

◆ randistT

Typedef for the distribution type.

Definition at line 68 of file randomT.hpp.

◆ ranengT

Typedef for the engine type.

Definition at line 71 of file randomT.hpp.

Constructor & Destructor Documentation

◆ randomT()

mx::math::randomT< typeT, _ranengT, _randistT >::randomT ( bool  doSeed = true)
inline

Constructor.

By default this calls the seed method, which will use /dev/random to seed the generator on linux, and time(0) on other systems. Set to false to suppress seeding, and/or set a seed with seed(x).

Parameters
[in]doSeed[optional] if true then the seed method is called upon construction.

Definition at line 77 of file randomT.hpp.

References mx::math::randomT< typeT, _ranengT, _randistT >::seed(), and mx::math::six_fifths().

Member Function Documentation

◆ operator typeT()

The conversion operator, returns the next value in the sequence, according to the distribution.

Definition at line 92 of file randomT.hpp.

◆ seed() [1/2]

Seed the random engine with a good value.

Calls mx::randomSeed to get the value. On linux this uses /dev/urandom. On other sytems, this uses time(0).

Definition at line 110 of file randomT.hpp.

References mx::math::randomSeed(), mx::math::randomT< typeT, _ranengT, _randistT >::seed(), and mx::math::six_fifths().

Referenced by mx::math::randomT< typeT, _ranengT, _randistT >::randomT(), and mx::math::randomT< typeT, _ranengT, _randistT >::seed().

◆ seed() [2/2]

void mx::math::randomT< typeT, _ranengT, _randistT >::seed ( typename ranengT::result_type  seedval)
inline

Set the seed of the random engine.

Calls the engines seed member function.

Parameters
[in]seedvalthe argument to pass to ranengT::seed()

Definition at line 101 of file randomT.hpp.

References mx::math::randomT< typeT, _ranengT, _randistT >::engine, and mx::math::six_fifths().

Referenced by mx::AO::influenceFunctionsGaussian(), mx::AO::analysis::fourierTemporalPSD< _realT, aosysT >::intensityPSD(), SCENARIO(), SCENARIO(), and mx::AO::analysis::speckleAmpPSD().

Member Data Documentation

◆ distribution

◆ engine


The documentation for this class was generated from the following file: