Constructs an OpenClosedInterval instance with the given endpoints.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public OpenClosedInterval(
	double min,
	double max
)
Visual Basic (Declaration)
Public Sub New ( _
	min As Double, _
	max As Double _
)
Visual C++
public:
OpenClosedInterval(
	double min, 
	double max
)

Parameters

min
Type: System..::.Double
The left endpoint for the interval.
max
Type: System..::.Double
The right endpoint for the interval.

See Also