ml-spectra-processing
    Preparing search index...

    Interface MatrixHistogramOptions

    interface MatrixHistogramOptions {
        absolute?: boolean;
        centerX?: boolean;
        histogram?: DataXY<NumberArray>;
        logBaseX?: number;
        logBaseY?: number;
        max?: number;
        min?: number;
        nbSlots?: number;
    }
    Index

    Properties

    absolute?: boolean

    Take the absolute value

    centerX?: boolean

    Center the X value. We will enlarge the first and

    true
    
    histogram?: DataXY<NumberArray>

    histogram

    logBaseX?: number

    We can first apply a log on the x-axis.

    logBaseY?: number

    We can apply a log on the resulting histogram

    max?: number

    Maximal value to calculate used to calculate slot size

    maxValue
    
    min?: number

    Minimum value to calculate used to calculate slot size

    minValue
    
    nbSlots?: number

    Number of slots

    256