Difference between revisions of "Manuals/calci/INCREASING"

From ZCubes Wiki
Jump to navigation Jump to search
Line 1: Line 1:
<div style="font-size:30px">'''INCREASING(array)'''</div><br/>
+
<div style="font-size:30px">'''INCREASING()'''</div><br/>
*Argument <math>array</math> is an array or set of any real numbers.
+
*Argument is an array or set of any real numbers.
  
 
==Description==
 
==Description==
 
*This function checks for the increasing order of numbers. If the order is increasing, then the function returns 'true'. Else returns 'false' as a result.
 
*This function checks for the increasing order of numbers. If the order is increasing, then the function returns 'true'. Else returns 'false' as a result.
*In <math>INCREASING(array)</math>, argument has any real numbers.
+
*In <math>INCREASING()</math>, argument has any real numbers.
 
*This function returns the result as NaN when the parameters are non-numeric.
 
*This function returns the result as NaN when the parameters are non-numeric.
  

Revision as of 18:07, 15 June 2018

INCREASING()


  • Argument is an array or set of any real numbers.

Description

  • This function checks for the increasing order of numbers. If the order is increasing, then the function returns 'true'. Else returns 'false' as a result.
  • In , argument has any real numbers.
  • This function returns the result as NaN when the parameters are non-numeric.

Examples

  1. INCREASING(3,6,7) = true
  2. INCREASING(1..10) = true
  3. INCREASING(455,105) = false
  4. INCREASING(4.5,-23) = false
  5. INCREASING(2/3,1/4) = false
  6. INCREASING(33,56,12,30) = false

See Also

References