]> gitweb.factorcode.org Git - factor.git/blob - extra/math/analysis/analysis-docs.factor
factor: clean up whitespace in -docs files
[factor.git] / extra / math / analysis / analysis-docs.factor
1 USING: help.markup help.syntax math ;
2 IN: math.analysis
3
4 HELP: gamma
5 { $values { "x" number } { "y" number } }
6 { $description "Gamma function; an extension of factorial to real and complex numbers." } ;
7
8 HELP: gammaln
9 { $values { "x" number } { "gamma[x]" number } }
10 { $description "An alternative to " { $link gamma } " when gamma(x)'s range varies too widely." } ;
11
12 HELP: exp-int
13 { $values { "x" number } { "y" number } }
14 { $description "Exponential integral function." }
15 { $notes "Works only for real values of " { $snippet "x" } " and is accurate to 7 decimal places." } ;
16
17 HELP: stirling-fact
18 { $values { "n" integer } { "fact" integer } }
19 { $description "James Stirling's factorial approximation." } ;