ApCoCoA-1:Fn.RoundN

From ApCoCoAWiki
Revision as of 13:52, 4 May 2011 by S schuster (talk | contribs) (New page: <command> <title>Fn.RoundN</title> <short_description>Round a number to a desired accuracy.</short_description> <syntax> Fn.RoundN(X:RAT,Acc:INT):RAT </syntax> <description> This funct...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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
-------------------------------

Fn.Round

Fn.SetAccuracy

Fn.GetAccuracy