MinMax

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Numeric functions >

MinMax

 

Description

 

Check if a numeric expression is included into a min/max range.

If numeric expression is less than the LowerLimit value, LowerLimit is returned.

If numeric expression is greater than the UpperLimit value, UpperLimit is returned.

 

Syntax

 

NewValue = MinMax(ExpressionToCheck, LowerLimit, UpperLimit)

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning

ExpressionToCheck

Numeric

No

Numeric expression to check

LowerLimit

Numeric

No

Lower limit value

UpperLimit

Numeric

No

Upper limit value

 

Remarks

 

Restrictions

 

See also

 

Between, Outside, Inside

 

Examples