Difference between revisions of "ApCoCoA-1:Fn.Pi"
From ApCoCoAWiki
S schuster (talk | contribs) (New page: <command> <title>Fn.Pi</title> <short_description>Returns the constant pi rounded to the current global accuracy.</short_description> <syntax> Fn.Pi():RAT </syntax> <description> <it...) |
m (insert version info) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Version|1}} | ||
<command> | <command> | ||
<title>Fn.Pi</title> | <title>Fn.Pi</title> | ||
Line 19: | Line 20: | ||
</example> | </example> | ||
</description> | </description> | ||
− | <see> | + | <see>ApCoCoA-1:Fn.PiN|Fn.PiN</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see> |
<key>Fn.Pi</key> | <key>Fn.Pi</key> | ||
− | <key> | + | <key>elemfns.Pi</key> |
<key>Pi</key> | <key>Pi</key> | ||
− | <wiki-category>Package_elemfns</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> |
</command> | </command> |
Latest revision as of 10:03, 7 October 2020
This article is about a function from ApCoCoA-1. |
Fn.Pi
Returns the constant pi rounded to the current global accuracy.
Syntax
Fn.Pi():RAT
Description
@return Returns the constant pi rounded to the current global accuracy.
Example
Fn.SetAccuracy(10); Dec(Fn.Pi(), 100); 3.1415926536 -------------------------------