Difference between revisions of "ApCoCoA-1:Fn.RoundN"
From ApCoCoAWiki
m (Bot: Category moved) |
|||
Line 27: | Line 27: | ||
<key>elemfns.RoundN</key> | <key>elemfns.RoundN</key> | ||
<key>RoundN</key> | <key>RoundN</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.RoundN
Round a number to a desired accuracy.
Syntax
Fn.RoundN(X:RAT,Acc:INT):RAT
Description
This function rounds the given value X to the given accuracy Acc.
@param X The value to round.
@param Acc The desired accuracy.
@return Returns X rounded to the accuracy Acc.
Example
R := Fn.RoundN(3.14159, 3); Dec(R, 10); 3.142 -------------------------------