ml-fcnnls
    Preparing search index...

    Function fcnnls

    • Fast Combinatorial Non-negative Least Squares with multiple Right Hand Side

      Parameters

      • X: number[][] | Matrix

        The data/input/predictors matrix

      • Y: number[] | number[][] | Matrix

        The response matrix

      • Optionaloptions: FcnnlsOptions<false | undefined>

      Returns KOnly

      By default, the object with the matrix of coefficients K. Please see FcnnlsOutput for more information.

    • Fast Combinatorial Non-negative Least Squares with multiple Right Hand Side

      Parameters

      • X: number[][] | Matrix

        The data/input/predictors matrix

      • Y: number[] | number[][] | Matrix

        The response matrix

      • Optionaloptions: FcnnlsOptions<true>

      Returns KAndInfo

      By default, the object with the matrix of coefficients K. Please see FcnnlsOutput for more information.

    • Fast Combinatorial Non-negative Least Squares with multiple Right Hand Side

      Type Parameters

      • T extends boolean | undefined

      Parameters

      • X: number[][] | Matrix

        The data/input/predictors matrix

      • Y: number[] | number[][] | Matrix

        The response matrix

      • Optionaloptions: FcnnlsOptions<T>

      Returns KOnly | KAndInfo

      By default, the object with the matrix of coefficients K. Please see FcnnlsOutput for more information.