sign() Function

Function

sign( number )

Returns the number divided by its absolute value, which is 1 if the number is positive and -1 if the number is negative.

Parameters

Keyword Type Description

number

Decimal

The number that will be divided by its absolute value.

Returns

Integer

Usage considerations

If the number value is equal to zero, the function returns 1.

Examples

sign(-3) returns -1

Open in Github Built: Wed, Aug 16, 2023 (04:37:39 PM)

On This Page

FEEDBACK