Constructs an Interval instance of the specifed type with the given endpoints.

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

Syntax

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

Parameters

min
Type: System..::.Double
The left endpoint for the interval.
max
Type: System..::.Double
The right endpoint for the interval.
type
Type: CenterSpace.NMath.Core..::.Interval..::.Type
The interval type.

See Also