58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
|
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." } ;
|
||
|
|
||
|
HELP: cosh "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric cosine." } ;
|
||
|
|
||
|
HELP: sech "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric secant." } ;
|
||
|
|
||
|
HELP: sinh "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric sine." } ;
|
||
|
|
||
|
HELP: sinh "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric sine." } ;
|
||
|
|
||
|
HELP: cosech "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric cosecant." } ;
|
||
|
|
||
|
HELP: tanh "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric tangent." } ;
|
||
|
|
||
|
HELP: coth "( x -- y )"
|
||
|
$values-x/y
|
||
|
{ $description "Trigonometric cotangent." } ;
|