ml-fcnnls
    Preparing search index...

    Interface FcnnlsOptions<T>

    interface FcnnlsOptions<T extends boolean | undefined> {
        gradientTolerance?: number;
        info?: T;
        interceptAtZero?: boolean;
        maxIterations?: number;
    }

    Type Parameters

    • T extends boolean | undefined
    Index

    Properties

    gradientTolerance?: number

    Larger values (like 1e-4) could help if the number of iterations is exceeded. For most cases, lower values should also be fine.

    1e-5
    
    info?: T

    Output the root squared error for each column of Y a well as the matrix K.

    false
    
    interceptAtZero?: boolean

    true. (The actual value is undefined.) false will add a column of ones to the left of X.

    maxIterations?: number

    Number of iterations

    3 times the number of columns of X