ml-spectra-processing
    Preparing search index...

    Interface XYArrayMergeByIntensityOptions

    interface XYArrayMergeByIntensityOptions {
        delta?: number | ((arg: number) => number);
    }
    Index

    Properties

    Properties

    delta?: number | ((arg: number) => number)

    A peak joins a slot when its x is within delta of the x of the most intense peak of that slot, so a slot is never wider than 2 * delta. It may also be a function that allows to change delta depending on the x value.

    1