ml-spectra-processing
    Preparing search index...

    Interface XNormedOptions<ArrayType>

    interface XNormedOptions<ArrayType extends NumberArray = Float64Array> {
        algorithm?: "absolute" | "max" | "sum";
        output?: ArrayType;
        value?: number;
    }

    Type Parameters

    • ArrayType extends NumberArray = Float64Array
    Index

    Properties

    algorithm?: "absolute" | "max" | "sum"

    algorithm can be 'sum' 'max' or 'absolute'

    'absolute'
    
    output?: ArrayType

    output into which the result should be placed if needed

    value?: number

    max or sum value

    1