Add documentation for math.analysis

db4
Aaron Schaefer 2008-11-09 19:22:04 -05:00
parent 531a9e32da
commit 9a3c10d212
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
USING: help.markup help.syntax math ;
IN: math.analysis
HELP: gamma
{ $values { "x" number } { "y" number } }
{ $description "Gamma function; an extension of factorial to real and complex numbers." } ;
HELP: gammaln
{ $values { "x" number } { "gamma[x]" number } }
{ $description "An alternative to " { $link gamma } " when gamma(x)'s range varies too widely." } ;
HELP: nth-root
{ $values { "n" integer } { "x" number } { "y" number } }
{ $description "Calculates the nth root of a number, such that " { $snippet "y^n=x" } "." } ;
HELP: exp-int
{ $values { "x" number } { "y" number } }
{ $description "Exponential integral function." }
{ $notes "Works only for real values of " { $snippet "x" } " and is accurate to 7 decimal places." } ;
HELP: stirling-fact
{ $values { "n" integer } { "fact" integer } }
{ $description "James Stirling's factorial approximation." } ;