timesfm-ts - v1.0.0
    Preparing search index...
    • Flip the ordering of quantiles (excluding the mean at index 0): [mean, q10, q20, ..., q90] → [mean, q90, q80, ..., q10]

      Parameters

      • arr: Float32Array

        The flat quantile array to flip.

      • numQuantiles: number

        Number of quantiles per step (10 for TimesFM 2.5).

      • inPlace: boolean = false

        If true, writes the result back into arr instead of allocating. Default false (safe, allocates new array).

      Returns Float32Array