dlm-js
    Preparing search index...

    Interface NormalPrior

    Normal(mean, std) prior specification for a real-valued parameter.

    Used for AR coefficients: p(φ | μ, σ) ∝ exp(−(φ−μ)² / (2σ²)).

    interface NormalPrior {
        mean: number;
        std: number;
    }

    Properties

    mean: number

    Prior mean μ.

    std: number

    Prior standard deviation σ > 0.