Bounded Iterative Process
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.
initial Point
Starting candidate root. Must lie within interval.
max Iterations
Max iterations before termination. Must be > 0.
desired Precision
Convergence target. Must be > 0.