Normal sampling (potentially truncated) for ParamDbl.
paradox::Sampler
-> paradox::Sampler1D
-> paradox::Sampler1DRfun
-> Sampler1DNormal
mean
(numeric(1)
)
Mean parameter of the normal distribution.
sd
(numeric(1)
)
SD parameter of the normal distribution.
new()
Creates a new instance of this R6 class.
Sampler1DNormal$new(param, mean = NULL, sd = NULL)
param
(Param) Domain / support of the distribution we want to sample from.
mean
(numeric(1)
)
Mean parameter of the normal distribution.
Default is mean(c(param$lower, param$upper)
.
sd
(numeric(1)
)
SD parameter of the normal distribution.
Default is (param$upper - param$lower)/4
.
clone()
The objects of this class are cloneable with this method.
Sampler1DNormal$clone(deep = FALSE)
deep
Whether to make a deep clone.
Other Sampler:
Sampler1DCateg
,
Sampler1DRfun
,
Sampler1DUnif
,
Sampler1D
,
SamplerHierarchical
,
SamplerJointIndep
,
SamplerUnif
,
Sampler