Computes the absolute value of x
x
Interval.abs( Interval(2, 3)) // Interval(2, 3)Interval.abs( Interval(-2, 3)) // Interval(2, 3)Interval.abs( Interval(-3, -2)) // Interval(2, 3)Interval.abs( Interval(-3, 2)) // Interval(0, 3)
Generated using TypeDoc
Computes the absolute value of
x
Example
Returns