Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
guides:programming:programmers_reference_manual:extended_math_functions [2025/04/15 18:29] – bshumsky | guides:programming:programmers_reference_manual:extended_math_functions [2025/04/15 18:46] (current) – bshumsky | ||
---|---|---|---|
Line 282: | Line 282: | ||
- | Compare two numbers, to full precision | + | Compare two numbers, to full precision. Returns 1 if first number is greater than the 2nd, 0 if the first number is equal to the 2nd, and -1 if the first number is less than the 2nd |
Line 294: | Line 294: | ||
b = " | b = " | ||
- | If a _cmpx b Then … | + | rslt = _cmpx(a,b) |
+ | |||
+ | If rslt == 1 Then … | ||
</ | </ | ||