Sets the closed interval in which to search for the roots.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual void SetBounds(
	double lowerBound,
	double upperBound
)
Visual Basic (Declaration)
Public Overridable Sub SetBounds ( _
	lowerBound As Double, _
	upperBound As Double _
)
Visual C++
public:
virtual void SetBounds(
	double lowerBound, 
	double upperBound
)

Parameters

lowerBound
Type: System..::.Double
a double containing the lower interval bound. lowerBound cannot be greater than or equal to upperBound.
upperBound
Type: System..::.Double
a double containing the upper interval bound.

Remarks

The function must be defined for all values in this interval.

Default: The search for the roots is not bounded.

See Also