Click or drag to resize

IntervalTFrom(T, T) Method

Creates an interval with conservatively inflated bounds.

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

Parameters

min  T
The minimum.
max  T
The maximum.

Return Value

IntervalT
An interval containing [min, max], with conservatively inflated bounds.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionmin is greater than max.
See Also