Skip to content

Parameter

A parameter represents a property of the SED that can be estimated.

Configuration

Discrete Parameter

toml param = [0.0, 1.0, 2.0]

toml param = { values = [0.0, 1.0, 2.0], prior = [0.3, 0.4, 0.3], }

toml param = { values = [0.0, 1.0, 2.0], prior.gaussian = { mu = 1.0, sigma = 1.0 }, }

toml param = { min = 0.0, max = 2.0, step = 1.0, prior.gaussian = { mu = 1.0, sigma = 1.0 }, }

Continuous Parameter

toml param = { min = 0.0, max = 10.0, prior.gaussian = { mu = 5.0, sigma = 2.0 }, }