absolutevalue: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:absolutevalue moved to absolutevalue) |
m (Conversion script moved page Absolutevalue to absolutevalue: Converting page titles to lowercase) |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Languages|absolutevalue}} | |||
{{MacroFunction | {{MacroFunction | ||
|name= | |name=absolutevalue | ||
|description=Returns the absolute value of a number. The absolute value of a number is the number without the sign. | |description=Returns the absolute value of a number. The absolute value of a number is the number without the sign. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: val = absolutevalue(num)] | |||
</syntaxhighlight> | |||
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==== | ||
[r: | <syntaxhighlight lang="mtmacro" line> | ||
</ | [r: absolutevalue(-3)] | ||
Returns 3 | </syntaxhighlight> | ||
Returns:<syntaxhighlight lang="mtmacro" line start=2>3</syntaxhighlight> | |||
< | |||
====Positive Number==== | |||
<syntaxhighlight lang="mtmacro" line> | |||
[r: abs(4)] | [r: abs(4)] | ||
</ | </syntaxhighlight> | ||
Returns 4. | Returns:<syntaxhighlight lang="mtmacro" line start=2>4</syntaxhighlight> | ||
====Decimal Number==== | |||
<syntaxhighlight lang="mtmacro" line> | |||
[r: abs(3.4)] | |||
</syntaxhighlight> | |||
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