Difference between revisions of "ApCoCoA-1:Fn.Round"
From ApCoCoAWiki
m (Bot: Category moved) |
|||
Line 27: | Line 27: | ||
<key>elemfns.Round</key> | <key>elemfns.Round</key> | ||
<key>Round</key> | <key>Round</key> | ||
− | <wiki-category>Package_elemfns</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> |
</command> | </command> |
Revision as of 16:11, 2 October 2020
Fn.Round
Round a number.
Syntax
Fn.Round(X:RAT):RAT
Description
This function rounds the given value X to the current global accuracy.
@param X The value to round.
@return Returns X rounded to the accuracy Acc.
Example
Fn.SetAccuracy(3); R := Fn.RoundN(3.14159); Dec(R, 10); 3.142 -------------------------------