factor/core/math/functions/functions-docs.factor

257 lines
6.7 KiB
Factor

USING: help.markup help.syntax kernel math
sequences quotations ;
IN: math.functions
ARTICLE: "integer-functions" "Integer functions"
{ $subsection align }
{ $subsection gcd }
{ $subsection log2 }
{ $subsection next-power-of-2 }
"Tests:"
{ $subsection power-of-2? }
{ $subsection even? }
{ $subsection odd? } ;
ARTICLE: "arithmetic-functions" "Arithmetic functions"
"Computing additive and multiplicative inverses:"
{ $subsection neg }
{ $subsection recip }
"Incrementing, decrementing:"
{ $subsection 1+ }
{ $subsection 1- }
"Minimum, maximum:"
{ $subsection min }
{ $subsection max }
"Complex conjugation:"
{ $subsection conjugate }
"Tests:"
{ $subsection zero? }
{ $subsection between? }
"Sign:"
{ $subsection sgn }
"Rounding:"
{ $subsection ceiling }
{ $subsection floor }
{ $subsection truncate }
{ $subsection round } ;
ARTICLE: "power-functions" "Powers and logarithms"
"Squares:"
{ $subsection sq }
{ $subsection sqrt }
"Exponential and natural logarithm:"
{ $subsection exp }
{ $subsection cis }
{ $subsection log }
"Raising a number to a power:"
{ $subsection ^ }
"Converting between rectangular and polar form:"
{ $subsection abs }
{ $subsection absq }
{ $subsection arg }
{ $subsection >polar }
{ $subsection polar> } ;
ARTICLE: "trig-hyp-functions" "Trigonometric and hyperbolic functions"
"Trigonometric functions:"
{ $subsection cos }
{ $subsection sin }
{ $subsection tan }
"Reciprocals:"
{ $subsection sec }
{ $subsection cosec }
{ $subsection cot }
"Inverses:"
{ $subsection acos }
{ $subsection asin }
{ $subsection atan }
"Inverse reciprocals:"
{ $subsection asec }
{ $subsection acosec }
{ $subsection acot }
"Hyperbolic functions:"
{ $subsection cosh }
{ $subsection sinh }
{ $subsection tanh }
"Reciprocals:"
{ $subsection sech }
{ $subsection cosech }
{ $subsection coth }
"Inverses:"
{ $subsection acosh }
{ $subsection asinh }
{ $subsection atanh }
"Inverse reciprocals:"
{ $subsection asech }
{ $subsection acosech }
{ $subsection acoth } ;
ARTICLE: "math-functions" "Mathematical functions"
{ $subsection "integer-functions" }
{ $subsection "arithmetic-functions" }
{ $subsection "power-functions" }
{ $subsection "trig-hyp-functions" } ;
ABOUT: "math-functions"
HELP: power-of-2?
{ $values { "n" integer } { "?" "a boolean" } }
{ $description "Tests if " { $snippet "n" } " is a power of 2." } ;
HELP: align
{ $values { "m" integer } { "w" "a power of 2" } { "n" "an integer multiple of " { $snippet "w" } } }
{ $description "Outputs the least multiple of " { $snippet "w" } " greater than " { $snippet "m" } "." }
{ $notes "This word will give an incorrect result if " { $snippet "w" } " is not a power of 2." } ;
HELP: exp
{ $values { "x" number } { "y" number } }
{ $description "Exponential function, " { $snippet "y=e^x" } "." } ;
HELP: log
{ $values { "x" number } { "y" number } }
{ $description "Natural logarithm function. Outputs negative infinity if " { $snippet "x" } " is 0." } ;
HELP: sqrt
{ $values { "x" number } { "y" number } }
{ $description "Square root function." } ;
HELP: log2
{ $values { "n" "a positive integer" } { "b" integer } }
{ $description "Outputs the largest integer " { $snippet "b" } " such that " { $snippet "2^b" } " is less than " { $snippet "n" } "." }
{ $errors "Throws an error if " { $snippet "n" } " is zero or negative." } ;
HELP: cosh
$values-x/y
{ $description "Hyperbolic cosine." } ;
HELP: sech
$values-x/y
{ $description "Hyperbolic secant." } ;
HELP: sinh
$values-x/y
{ $description "Hyperbolic sine." } ;
HELP: cosech
$values-x/y
{ $description "Hyperbolic cosecant." } ;
HELP: tanh
$values-x/y
{ $description "Hyperbolic tangent." } ;
HELP: coth
$values-x/y
{ $description "Hyperbolic cotangent." } ;
HELP: cos
$values-x/y
{ $description "Trigonometric cosine." } ;
HELP: sec
$values-x/y
{ $description "Trigonometric secant." } ;
HELP: sin
$values-x/y
{ $description "Trigonometric sine." } ;
HELP: cosec
$values-x/y
{ $description "Trigonometric cosecant." } ;
HELP: tan
$values-x/y
{ $description "Trigonometric tangent." } ;
HELP: cot
$values-x/y
{ $description "Trigonometric cotangent." } ;
HELP: acosh
$values-x/y
{ $description "Inverse hyperbolic cosine." } ;
HELP: asech
$values-x/y
{ $description "Inverse hyperbolic secant." } ;
HELP: asinh
$values-x/y
{ $description "Inverse hyperbolic sine." } ;
HELP: acosech
$values-x/y
{ $description "Inverse hyperbolic cosecant." } ;
HELP: atanh
$values-x/y
{ $description "Inverse hyperbolic tangent." } ;
HELP: acoth
$values-x/y
{ $description "Inverse hyperbolic cotangent." } ;
HELP: acos
$values-x/y
{ $description "Inverse trigonometric cosine." } ;
HELP: asec
$values-x/y
{ $description "Inverse trigonometric secant." } ;
HELP: asin
$values-x/y
{ $description "Inverse trigonometric sine." } ;
HELP: acosec
$values-x/y
{ $description "Inverse trigonometric cosecant." } ;
HELP: atan
$values-x/y
{ $description "Inverse trigonometric tangent." } ;
HELP: acot
$values-x/y
{ $description "Inverse trigonometric cotangent." } ;
HELP: conjugate
{ $values { "z" number } { "z*" number } }
{ $description "Computes the complex conjugate by flipping the sign of the imaginary part of " { $snippet "z" } "." } ;
HELP: arg
{ $values { "z" number } { "arg" "a number in the interval " { $snippet "(-pi,pi]" } } }
{ $description "Computes the complex argument." } ;
HELP: >polar
{ $values { "z" number } { "abs" "a non-negative real number" } { "arg" "a number in the interval " { $snippet "(-pi,pi]" } } }
{ $description "Creates a complex number from an absolute value and argument (polar form)." } ;
HELP: cis
{ $values { "arg" "a real number" } { "z" "a complex number on the unit circle" } }
{ $description "Computes a point on the unit circle using Euler's formula for " { $snippet "exp(arg*i)" } "." } ;
{ cis exp } related-words
HELP: polar>
{ $values { "z" number } { "abs" "a non-negative real number" } { "arg" real } }
{ $description "Converts an absolute value and argument (polar form) to a complex number." } ;
HELP: [-1,1]?
{ $values { "x" number } { "?" "a boolean" } }
{ $description "Tests if " { $snippet "x" } " is a real number between -1 and 1, inclusive." } ;
HELP: abs
{ $values { "x" number } { "y" "a non-negative real number" } }
{ $description "Computes the absolute value of a complex number." } ;
HELP: absq
{ $values { "x" number } { "y" "a non-negative real number" } }
{ $description "Computes the squared absolute value of a complex number. This is marginally more efficient than " { $link abs } "." } ;
HELP: ^
{ $values { "x" number } { "y" number } { "z" number } }
{ $description "Raises " { $snippet "x" } " to the power of " { $snippet "y" } ". If " { $snippet "y" } " is an integer the answer is computed exactly, otherwise a floating point approximation is used." }
{ $errors "Throws an error if " { $snippet "x" } " and " { $snippet "y" } " are both integer 0." } ;