BoundedIterativeProcess

constructor(func: FunctionIfc, interval: Interval, initialPoint: Double = (interval.lowerLimit + interval.upperLimit) / 2.0, maxIterations: Int, desiredPrecision: Double = 1.0E-4)(source)

Parameters

T

Step type for Observable.

func

Function whose root is sought.

interval

Bounded search interval. lowerLimit must be < upperLimit.

initialPoint

Starting candidate root. Must lie within interval.

maxIterations

Max iterations before termination. Must be > 0.

desiredPrecision

Convergence target. Must be > 0.