32 lines
834 B
Factor
Executable File
32 lines
834 B
Factor
Executable File
USING: help.markup help.syntax kernel layouts ;
|
|
IN: math.constants
|
|
|
|
ARTICLE: "math-constants" "Constants"
|
|
"Standard mathematical constants:"
|
|
{ $subsection e }
|
|
{ $subsection gamma }
|
|
{ $subsection phi }
|
|
{ $subsection pi }
|
|
"Various limits:"
|
|
{ $subsection most-positive-fixnum }
|
|
{ $subsection most-negative-fixnum }
|
|
{ $subsection epsilon } ;
|
|
|
|
ABOUT: "math-constants"
|
|
|
|
HELP: e
|
|
{ $values { "e" "base of natural logarithm" } } ;
|
|
|
|
HELP: gamma
|
|
{ $values { "gamma" "Euler-Mascheroni constant" } }
|
|
{ $description "The Euler-Mascheroni constant, also called \"Euler's constant\" or \"the Euler constant\"." } ;
|
|
|
|
HELP: phi
|
|
{ $values { "phi" "golden ratio" } } ;
|
|
|
|
HELP: pi
|
|
{ $values { "pi" "circumference of circle with diameter 1" } } ;
|
|
|
|
HELP: epsilon
|
|
{ $values { "epsilon" "smallest floating point value you can add to 1 without underflow" } } ;
|