factor/library/math/arc-trig-hyp.facts

58 lines
1.2 KiB
Plaintext
Raw Normal View History

2006-01-12 00:34:56 -05:00
USING: help math ;
2006-01-11 18:26:12 -05:00
HELP: acosh "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic cosine." } ;
HELP: asech "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic secant." } ;
HELP: asinh "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic sine." } ;
HELP: asinh "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic sine." } ;
HELP: acosech "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic cosecant." } ;
HELP: atanh "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic tangent." } ;
HELP: acoth "( x -- y )"
$values-x/y
{ $description "Inverse hyperbolic cotangent." } ;
2006-01-12 01:08:45 -05:00
HELP: acos "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric cosine." } ;
2006-01-12 01:08:45 -05:00
HELP: asec "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric secant." } ;
2006-01-12 01:08:45 -05:00
HELP: asin "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric sine." } ;
2006-01-12 01:08:45 -05:00
HELP: asin "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric sine." } ;
2006-01-12 01:08:45 -05:00
HELP: acosec "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric cosecant." } ;
2006-01-12 01:08:45 -05:00
HELP: atan "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric tangent." } ;
2006-01-12 01:08:45 -05:00
HELP: acot "( x -- y )"
2006-01-11 18:26:12 -05:00
$values-x/y
{ $description "Inverse trigonometric cotangent." } ;