ml-gsd
    Preparing search index...

    Interface GSDPeak

    interface GSDPeak {
        ddY: number;
        id?: string;
        index: number;
        inflectionPoints: {
            from: { index: number; x: number };
            to: { index: number; x: number };
        };
        width: number;
        x: number;
        y: number;
    }
    Index

    Properties

    ddY: number

    Second derivative at the level of the peak. Used to decide whether a peak is soft/broad.

    id?: string

    Stable identifier assigned to the peak.

    undefined
    
    index: number

    Index of the peak in the spectrum's x and y arrays.

    inflectionPoints: {
        from: { index: number; x: number };
        to: { index: number; x: number };
    }

    Inflection points (left and right) bounding the peak.

    width: number

    Width at the level of the inflection points.

    x: number

    x coordinate of the peak.

    y: number

    y coordinate (intensity) of the peak.