ApCoCoA-1:Num.Floor: Difference between revisions
From ApCoCoAWiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<command> | <command> | ||
<title>Floor</title> | <title>Num.Floor</title> | ||
<short_description>Maps a rational number to the next smallest integer.</short_description> | <short_description>Maps a rational number to the next smallest integer.</short_description> | ||
Line 43: | Line 43: | ||
<key>Floor</key> | <key>Floor</key> | ||
<key>num.floor</key> | |||
<key>numerical.floor</key> | |||
<wiki-category>Package_numerical</wiki-category> | <wiki-category>Package_numerical</wiki-category> | ||
</command> | </command> |
Revision as of 11:31, 15 October 2009
Num.Floor
Maps a rational number to the next smallest integer.
Syntax
Num.Floor(Num:RAT):INT
Description
Maps a rational number Num to the next smallest integer.
@param Num A rational number.
@return The next smallest integer.
Example
Num.Floor(8.1); Num.Floor(-8.1); Num.Floor(8); 8 ------------------------------- -9 ------------------------------- 8 -------------------------------
See also