param.normal: Define a real parameter with a normal distribution

Description Usage Arguments Value See Also Examples

View source: R/params.R

Description

Define a real parameter with a normal distribution

Usage

1
2
3
param.normal(mean, sd, initial = NULL, ...)

param.normal.int(mean, sd, initial = NULL, ...)

Arguments

mean

The mean of the distribution

sd

The standard deviation of the distribution

initial

The initial value or NULL

...

Additional arguments to be used in optimisation methods.

Value

An object of type 'param.distributed'

See Also

param.distributed, param.real

Examples

1
2
3
param.distributed("norm", args=list(mean=12, sd=2))
# is the same as
param.normal(mean=12, sd=2)

paleolimbot/easyoptim documentation built on May 24, 2019, 6:12 p.m.