Sign
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
Sign( value )
sign( value )
Sign( value )
Sign( value )
Sign( value )
Sign( value )
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Number |
Determine the sign of this Number. |
Returns
Long Values:
-
1 when the value of the argument is positive.
-
0 when the value of the argument is zero.
-
-1 when the value of the argument is negative.
Double Values:
-
-1 when the value of the argument is less than zero.
-
1 when the value is greater than or equal to zero or
NaN
.
Examples
The following query executes an array of independent sign operations and returns the results in an array. The result array position matches the execution array position. The first sign operation on the value 3 returns 1 for a positive number. The second operation returns zero for neither a positive nor negative number. The third sign operation on the value -3 returns -1 for a negative number.
[ 1, 0, -1 ]
[1, 0, -1]
[1 0 -1]
Arr(LongV(1), LongV(0), LongV(-1))
[1, 0, -1]
[ 1, 0, -1 ]