The OpenD Programming Language

CauchyVariable

$(WIKI_D Cauchy).

Constructors

this
this(T location, T scale)

Members

Functions

opCall
T opCall(G gen)
T opCall(G* gen)

Manifest constants

isRandomVariable
enum isRandomVariable;

Variables

max
enum T max;
min
enum T min;

Return Value

X ~ Cauchy(x, γ)

Examples

auto rv = cauchyVar;
static assert(isRandomVariable!(typeof(rv)));
import mir.random.engine;
auto x = rv(rne);
import mir.random.engine;
Random* gen = threadLocalPtr!Random;
auto rv = CauchyVariable!double(0, 1);
auto x = rv(gen);

Meta