absolutevalue: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Conversion script moved page Absolutevalue to absolutevalue: Converting page titles to lowercase) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 5: | Line 5: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: val = absolutevalue(num)] | [h: val = absolutevalue(num)] | ||
</ | </syntaxhighlight> | ||
You can use the following shorthand for this function: | You can use the following shorthand for this function: | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: val = abs(num)] | [h: val = abs(num)] | ||
</ | </syntaxhighlight> | ||
|examples= | |examples= | ||
====Negative Number==== | ====Negative Number==== | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: absolutevalue(-3)] | [r: absolutevalue(-3)] | ||
</ | </syntaxhighlight> | ||
Returns:< | Returns:<syntaxhighlight lang="mtmacro" line start=2>3</syntaxhighlight> | ||
====Positive Number==== | ====Positive Number==== | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: abs(4)] | [r: abs(4)] | ||
</ | </syntaxhighlight> | ||
Returns:< | Returns:<syntaxhighlight lang="mtmacro" line start=2>4</syntaxhighlight> | ||
====Decimal Number==== | ====Decimal Number==== | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: abs(3.4)] | [r: abs(3.4)] | ||
</ | </syntaxhighlight> | ||
Returns:< | Returns:<syntaxhighlight lang="mtmacro" line start=2>3.4</syntaxhighlight> | ||
}} | }} | ||
[[Category:Mathematical Function]] | [[Category:Mathematical Function]] | ||
{{Languages|absolutevalue}} | {{Languages|absolutevalue}} |
Latest revision as of 23:59, 9 February 2023
absolutevalue() Function
Returns the absolute value of a number. The absolute value of a number is the number without the sign.
Usage
[h: val = absolutevalue(num)]
You can use the following shorthand for this function:
[h: val = abs(num)]
Examples
====Negative Number====
Returns:
Returns:
Returns:
[r: absolutevalue(-3)]
3
Positive Number
[r: abs(4)]
4
Decimal Number
[r: abs(3.4)]
3.4