dlm-js
    Preparing search index...

    Interface DlmMleResultMatlab

    MATLAB DLM-compatible MLE result. Produced by toMatlabMle.

    interface DlmMleResultMatlab {
        arphi?: number[];
        elapsed: number;
        fit: DlmFitResult;
        iterations: number;
        jitMs: number;
        lik: number;
        likHistory: number[];
        priorPenalty?: number;
        s: number;
        w: number[];
    }

    Properties

    arphi?: number[]

    Estimated AR coefficients

    elapsed: number

    Wall-clock time in ms

    Full DLM fit result (MATLAB layout)

    iterations: number

    Number of iterations

    jitMs: number

    JIT compilation time in ms

    lik: number

    -2 · log-likelihood

    likHistory: number[]

    Optimization history

    priorPenalty?: number

    Prior penalty at optimum (only when custom loss)

    s: number

    Estimated observation noise std dev

    w: number[]

    Estimated state noise std devs