Difference between revisions of "NXSL:floor"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Round down value. == Syntax == floor(''x''); == Parameters == :{| |- | ''x'' || Floating point value. |} == Return Value == The largest integral value not g...") |
(No difference)
|
Revision as of 00:00, 6 January 2013
Round down value.
Syntax
floor(x);
Parameters
x Floating point value.
Return Value
The largest integral value not greater than x.
Examples
floor(2.3) -> 2 floor(3.8) -> 3 floor(-2.3) -> -3 floor(-3.8) -> -4