Click or drag to resize

IntervalTFromExact(T, T) Method

Creates an interval with exact bounds (no inflation).

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static Interval<T> FromExact(
	T min,
	T max
)

Parameters

min  T
The minimum.
max  T
The maximum.

Return Value

IntervalT
An interval equal to [min, max].
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionmin is greater than max.
See Also