Interface ILinearDependenciesOptions

interface ILinearDependenciesOptions {
    thresholdError?: number;
    thresholdValue?: number;
}

Properties

thresholdError?: number

If the error is inferior to that threshold, the linear combination found is accepted and the row is dependent from other rows.

Default

10e-10

thresholdValue?: number

If an absolute value is inferior to this threshold, it will equals zero.

Default

10e-10