Click or drag to resize

DoubleIterativelyReweightedLeastSq Properties

The DoubleIterativelyReweightedLeastSq type exposes the following members.

Properties
 NameDescription
Public propertyAddIntercept Gets the add intercept option. If AddIntercept is true then a column of ones was prepended to the input matrix, representing a constant term in the model.
Public propertyConvergenceFunction Gets and sets the delegate function used to determine convergence. The delegate should return true when the tolerance is met.
Public propertyStatic memberDefaultMaxIterations Gets and sets the default maximum number of iterations.
Public propertyStatic memberDefaultTolerance Gets and sets the default error tolerance.
Public propertyIterations Gets the number of iterations performed in the most recent computation.
Public propertyMaxIterations Gest and set the maximum number of iterations. The algorithm will be terminated when it converges or the maximum number of iterations has been reached, which ever comes first.
Public propertyMaxIterationsMet Returns true if the minimum just computed stopped because the maximum number of iterations was reached; otherwise, false.
Public propertyResiduals Gets the residual vector from the most recent computation.
Public propertyTolerance Gets and sets the tolerance. The tolerance is given to the ToleranceMet function. If using the default ToleranceMet function, the tolerance should be a relative one since the difference between successive solutions will be a relative one, that is the difference will be divided by the larger of the two solutions producing a value between 0 and 1.
Public propertyToleranceMet Returns true if the minimum just computed stopped because the error tolerance was reached; otherwise, false.
Public propertyWeights Gets the weights used in the final iteration of the most recent computation.
Public propertyWeightsFunction Gets and sets the weight function.
Top
See Also