ml-spectra-fitting
    Preparing search index...

    Interface InitialParameter

    interface InitialParameter {
        gradientDifference?: OptimizationParameter;
        init?: OptimizationParameter;
        max?: OptimizationParameter;
        min?: OptimizationParameter;
        optimize?: OptimizeFlag;
    }
    Index

    Properties

    gradientDifference?: OptimizationParameter

    definition of the step size to approximate the jacobian matrix of the parameter. If it is a callback, it receives the original peak provided by the user.

    init?: OptimizationParameter
    max?: OptimizationParameter

    definition of the upper limit of the parameter. If it is a callback, it receives the original peak provided by the user.

    min?: OptimizationParameter

    definition of the lower limit of the parameter. If it is a callback, it receives the original peak provided by the user.

    optimize?: OptimizeFlag

    whether this parameter should be optimized (true by default)