ml-spectra-processing
    Preparing search index...

    Interface XYEqualIntegrationVectorOptions

    interface XYEqualIntegrationVectorOptions {
        depth?: number;
        from?: number;
        fromIndex?: number;
        to?: number;
        toIndex?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    depth?: number

    Number of levels of the binary tree. The returned vector has 2 ** depth - 1 entries.

    5
    
    from?: number

    Start value in the x scale; resolved to the nearest index.

    x[0]
    
    fromIndex?: number

    Start index (0-based, clamped to array bounds). Takes precedence over from.

    0
    
    to?: number

    End value in the x scale; resolved to the nearest index.

    x[x.length-1]
    
    toIndex?: number

    End index (0-based, clamped to array bounds). Takes precedence over to.

    x.length-1