ml-spectra-processing
    Preparing search index...

    Interface XYEquallySpacedOptions

    interface XYEquallySpacedOptions {
        exclusions?: FromTo[];
        from?: number;
        numberOfPoints?: number;
        to?: number;
        variant?: "slot" | "smooth";
        zones?: FromTo[];
    }
    Index

    Properties

    exclusions?: FromTo[]

    array of from / to that should be skipped for the generation of the points

    []
    
    from?: number

    Start of the output x range.

    x[0]
    
    numberOfPoints?: number

    number of points

    100
    
    to?: number

    End of the output x range.

    x[x.length-1]
    
    variant?: "slot" | "smooth"

    slot averages y values within each bin; smooth uses the trapezoidal integral divided by the step size.

    'smooth'
    
    zones?: FromTo[]

    array of from / to that should be kept

    []