dlm-js
    Preparing search index...

    Interface StuffedMleInput

    Result of converting integer-step timestamped observations to a NaN-stuffed unit grid.

    y is expanded to the full unit grid, missing steps are filled with NaN, and optional X / obsStdFixed inputs are expanded to matching arrays.

    interface StuffedMleInput {
        obsStdFixed?: number[];
        timestamps: number[];
        X?: number[][];
        y: number[];
    }

    Properties

    obsStdFixed?: number[]
    timestamps: number[]
    X?: number[][]
    y: number[]