Interface FcnnlsOptions<T>

Type Parameters

  • T extends boolean | undefined

Hierarchy

  • FcnnlsOptions

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.

Default

1e-5
info?: T

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

Default

false
interceptAtZero?: boolean

Default

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

maxIterations?: number

Number of iterations

Default

3 times the number of columns of X