absolutevalue: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) No edit summary |
m (Conversion script moved page Absolutevalue to absolutevalue: Converting page titles to lowercase) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Languages|absolutevalue}} | |||
{{MacroFunction | {{MacroFunction | ||
|name=absolutevalue | |name=absolutevalue | ||
Line 4: | 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}} |
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