timesfm-ts - v1.0.0
    Preparing search index...
    interface SummingMatrixResult {
        S: number[][];
        allNodeIds: readonly string[];
        bottomNodeIds: readonly string[];
    }
    Index

    Properties

    S: number[][]

    S (m × n): S[i][j] = 1 iff bottom node j contributes to node i.

    allNodeIds: readonly string[]

    Node ids in row order (length m) — topologically sorted, parents before children.

    bottomNodeIds: readonly string[]

    Bottom-level node ids in column order (length n).