Difference between revisions of "Manuals/calci/GESTEP"
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | <div style="font-size:30px">'''GESTEP( | + | <div style="font-size:30px">'''GESTEP (number,step)'''</div><br/> |
| − | *<math> | + | *<math>number</math> is the number. |
| − | *<math> | + | *<math>step</math> is the step to threshold a value. |
| + | **GESTEP(),tests whether a number is greater than a threshold value. | ||
==Description== | ==Description== | ||
*This function gives the result in a logical values (0 or 1). | *This function gives the result in a logical values (0 or 1). | ||
*It is used to filter the values. | *It is used to filter the values. | ||
| − | *In <math>GESTEP( | + | *In <math>GESTEP(number,step)</math>, <math>n</math> is the number to test against step and <math>s</math> is the step to threshold a value. |
| − | *Here <math> | + | *Here <math> number </math> value is required and <math> step </math> is optional. |
| − | *When we are not giving the <math> | + | *When we are not giving the <math> step </math> value, then it will assumed to be zero. |
| − | *This function gives the result as 1, <math> | + | *This function gives the result as 1, <math> number </math> value is greater than or equal to <math> step </math> value, or <math>0</math> otherwise. |
*<math> GESTEP </math> should only be used with numbers. | *<math> GESTEP </math> should only be used with numbers. | ||
| Line 29: | Line 30: | ||
==References== | ==References== | ||
*[http://help.syncfusion.com/ug/asp.net/index.html#!documents/gestep.htm Gestep Function] | *[http://help.syncfusion.com/ug/asp.net/index.html#!documents/gestep.htm Gestep Function] | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | *[[Z_API_Functions | List of Main Z Functions]] | ||
| + | |||
| + | *[[ Z3 | Z3 home ]] | ||
Latest revision as of 17:23, 13 July 2018
GESTEP (number,step)
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle number} is the number.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle step}
is the step to threshold a value.
- GESTEP(),tests whether a number is greater than a threshold value.
Description
- This function gives the result in a logical values (0 or 1).
- It is used to filter the values.
- In Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle GESTEP(number,step)} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n} is the number to test against step and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle s} is the step to threshold a value.
- Here Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle number } value is required and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle step } is optional.
- When we are not giving the Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle step } value, then it will assumed to be zero.
- This function gives the result as 1, Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle number } value is greater than or equal to Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle step } value, or otherwise.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle GESTEP } should only be used with numbers.
Examples
- GESTEP(8,9) = 0
- GESTEP(9,8) = 1
- GESTEP(0,1) = 0
- GESTEP(0,0) = 1
- GESTEP(-1,0) = 0
- GESTEP(a,b) = Null
Related Videos
See Also
References