chromatography
    Preparing search index...

    Interface NmfOptions

    interface NmfOptions {
        maxFBIteration?: number;
        maximumIteration?: number;
        phaseRatio?: number;
        toleranceFB?: number;
        useTranspose?: boolean;
    }
    Index

    Properties

    maxFBIteration?: number

    Maximum number of iterations of the Forward-Backward subroutine.

    80
    
    maximumIteration?: number

    Maximum number of iterations

    500
    
    phaseRatio?: number

    Transition between decreasing thresholding phase and refinement phase in percent of the iterations.

    0.8
    
    toleranceFB?: number

    Relative difference tolerance for convergence of the Forward-Backward sub-iterations.

    1e-5
    
    useTranspose?: boolean

    If true the originalMatrix is transposed.

    false