githubEdit

numeric

Numeric Methods

chevron-rightsqr()hashtag

Returns the square root of a number

chevron-rightasin()hashtag

Returns the arcsine (inverse sine) of a number

chevron-rightsgn()hashtag

Determine the sign of a number

chevron-rightdecrementValue()hashtag

Decrement the integer part of a number

chevron-rightround(precision=[integer])hashtag

Rounds a number to the closest integer.

Arguments:

Argument
Type
Required
Default

precision

integer

false

0

chevron-rightcos()hashtag

Returns the cosine of an angle entered in radians

chevron-rightint()hashtag

Returns the closest integer that is smaller than the number

chevron-rightexp()hashtag

Calculates the exponent whose base is e that represents a number.

chevron-rightceiling()hashtag

Determines the closest integer that is greater than a specified floating point number.

chevron-rightatn()hashtag

Returns the arc tangent (inverse tangent) of a number

chevron-rightfix()hashtag

Converts a real number to an integer

chevron-rightmax(number2=[numeric])hashtag

Return larger of two numbers

Arguments:

Argument
Type
Required
Default

number2

numeric

true

null

chevron-rightmin(number2=[numeric])hashtag

Return larger of two numbers

Arguments:

Argument
Type
Required
Default

number2

numeric

true

null

chevron-rightabs()hashtag

Returns the absolute value of a number

chevron-rightlog()hashtag

Returns the natural logarithm of a number.

chevron-rightlog10()hashtag

No description available

chevron-rightacos()hashtag

Returns the arccosine (inverse cosine) of a number

chevron-rightfloor()hashtag

Returns the absolute value of a number

chevron-rightformatBaseN(radix=[integerTruncate])hashtag

Converts a number to a string representation in the specified base.

Arguments:

Argument
Type
Required
Default

radix

integerTruncate

true

null

chevron-righttan()hashtag

Returns the tangent of an angle that is entered in radians.

chevron-rightsin()hashtag

Returns the sine of a number

chevron-rightincrementValue()hashtag

Increment the integer part of a number

chevron-rightbxDump(label=[string], top=[numeric], expand=[boolean], abort=[boolean], output=[string], format=[string], showUDFs=[boolean])hashtag

Outputs the contents of a variable (simple or complex) of any type for debugging purposes to a specific output location.

, The available ,,output,, locations are: - ,,buffer,,: The output is written to the buffer, which is the default location. If running on a web server, the output is written to the browser. - ,,console,,: The output is printed to the System console. - ,,Absolute File Path,, The output is written to a file with the specified absolute file path. ,

,

The output format can be either HTML or plain text.

The default format is HTML if the output location is the buffer or a web server or a file, otherwise it is plain text for the console.

Arguments:

Argument
Type
Required
Default

label

string

false

null

top

numeric

false

null

expand

boolean

false

true

abort

boolean

false

false

output

string

false

null

format

string

false

null

showUDFs

boolean

false

true

chevron-rightdecimalFormat(length=[integer])hashtag

Converts a number to a decimal-formatted string.

Arguments:

Argument
Type
Required
Default

length

integer

false

2

chevron-rightbooleanFormat()hashtag

Returns the value formatted as a boolean string

chevron-rightnumberFormat(mask=[string], locale=[string])hashtag

Formats a number with an optional format mask

Arguments:

Argument
Type
Required
Default

mask

string

false

null

locale

string

false

null

chevron-rightcurrencyFormat(type=[string], locale=[string])hashtag

nullArguments:

Argument
Type
Required
Default

type

string

false

local

locale

string

false

null

Examples

Last updated

Was this helpful?