Technical Elements Documentation
    Preparing search index...

    Interface BayesianUpdate

    Interface representing a Bayesian update process for parameter estimation. This is used to combine prior information with new data to produce an updated posterior distribution.

    DA-D4

    interface BayesianUpdate {
        convergence_criteria?: number;
        method: string;
        performed: boolean;
        posterior?: {
            distribution: DistributionType;
            parameters: Record<string, number>;
        };
        prior?: {
            distribution: DistributionType;
            parameters: Record<string, number>;
            source?: string;
        };
        validation?: { issues?: string[]; method: string; results: string };
    }
    Index

    Properties

    convergence_criteria?: number

    Convergence criteria used for numerical methods (if applicable)

    method: string

    The method used for the Bayesian update (e.g., "Conjugate prior", "MCMC")

    performed: boolean

    Whether a Bayesian update was performed

    posterior?: {
        distribution: DistributionType;
        parameters: Record<string, number>;
    }

    Posterior distribution information after update

    Type declaration

    • distribution: DistributionType

      The distribution type of the posterior

    • parameters: Record<string, number>

      Parameters of the posterior distribution

    prior?: {
        distribution: DistributionType;
        parameters: Record<string, number>;
        source?: string;
    }

    Prior distribution information

    Type declaration

    • distribution: DistributionType

      The distribution type of the prior

    • parameters: Record<string, number>

      Parameters of the prior distribution

    • Optionalsource?: string

      Source of the prior information

    validation?: { issues?: string[]; method: string; results: string }

    Validation of the update process

    Type declaration

    • Optionalissues?: string[]

      Any issues identified

    • method: string

      Method used for validation

    • results: string

      Results of validation