Skip to main content

Module parametric

Module parametric 

Source
Expand description

Parametric algorithm implementations.

Parametric algorithms estimate the population distribution as a parametric model (for example a multivariate normal) whose parameters are fitted to the data.

§Algorithm Selection

Use the ParametricAlgorithm enum to select and configure an algorithm. Each variant wraps its algorithm-specific configuration struct (e.g. SaemConfig).

Note: the parametric fitting machinery is not yet implemented. Constructing a problem and calling fit_with with a ParametricAlgorithm type-checks today, but running it will panic until the SAEM solver is implemented.

Re-exports§

pub use saem_config::SaemConfig;

Modules§

saem_config

Enums§

ParametricAlgorithm
The parametric algorithms supported by PMcore.