factor/library/math/trig-hyp.facts

58 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2006-01-12 00:34:56 -05:00
USING: help math ;
HELP: cosh "( x -- y )"
$values-x/y
{ $description "Hyperbolic cosine." } ;
HELP: sech "( x -- y )"
$values-x/y
{ $description "Hyperbolic secant." } ;
HELP: sinh "( x -- y )"
$values-x/y
{ $description "Hyperbolic sine." } ;
HELP: sinh "( x -- y )"
$values-x/y
{ $description "Hyperbolic sine." } ;
HELP: cosech "( x -- y )"
$values-x/y
{ $description "Hyperbolic cosecant." } ;
HELP: tanh "( x -- y )"
$values-x/y
{ $description "Hyperbolic tangent." } ;
HELP: coth "( x -- y )"
$values-x/y
{ $description "Hyperbolic cotangent." } ;
2006-01-20 04:58:12 -05:00
HELP: cos "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric cosine." } ;
2006-01-20 04:58:12 -05:00
HELP: sec "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric secant." } ;
2006-01-20 04:58:12 -05:00
HELP: sin "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric sine." } ;
2006-01-20 04:58:12 -05:00
HELP: sin "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric sine." } ;
2006-01-20 04:58:12 -05:00
HELP: cosec "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric cosecant." } ;
2006-01-20 04:58:12 -05:00
HELP: tan "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric tangent." } ;
2006-01-20 04:58:12 -05:00
HELP: cot "( x -- y )"
2006-01-12 00:34:56 -05:00
$values-x/y
{ $description "Trigonometric cotangent." } ;