Abs: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(edit)
 
No edit summary
Line 1: Line 1:
ABS(x)
ABS(x)


The '''ABS''' internal function returns the absolute value of X. In other words, regardless of whether the argument passed to ABS is positive, zero, or negative, the result is always '''NON-NEGATIVE'''.
The '''ABS''' [[internal function]] returns the absolute value of X. In other words, regardless of whether the argument passed to ABS is positive, zero, or negative, the result is always '''NON-NEGATIVE'''.


====Comments and Examples====
====Comments and Examples====

Revision as of 18:29, 24 February 2014

ABS(x)

The ABS internal function returns the absolute value of X. In other words, regardless of whether the argument passed to ABS is positive, zero, or negative, the result is always NON-NEGATIVE.

Comments and Examples

  • ABS(-342) returns 342
  • ABS(-84.11) returns 84.11
  • ABS(4) returns 4
  • ABS(0) returns 0

Related Functions