ZerosFunctionSetBounds Method |
Sets the closed interval in which to search for the roots.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual void SetBounds(
double lowerBound,
double upperBound
)
Public Overridable Sub SetBounds (
lowerBound As Double,
upperBound As Double
)
public:
virtual void SetBounds(
double lowerBound,
double upperBound
)
abstract SetBounds :
lowerBound : float *
upperBound : float -> unit
override SetBounds :
lowerBound : float *
upperBound : float -> unit
Parameters
- lowerBound
- Type: SystemDouble
a double containing the lower interval
bound. lowerBound cannot be greater than
or equal to upperBound.
- upperBound
- Type: SystemDouble
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