Skip to main content

TANH

Returns the hyperbolic tangent of an angle.

Synopsis

TANH(number)

Arguments

number An expression that resolves to a number that specifies an angle in degrees.

Description

TANH takes an angle and returns the ratio of two sides of a right triangle. The ratio is the length of the side opposite the angle divided by the length of the side adjacent to the angle.

By default, Caché MVBasic trig functions return results in degrees. To return results in radians, set $OPTIONS RADIANS.

To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi.

Examples

The following example uses the TANH function to return the hyperbolic tangent of an angle:

Dim MyAngle
MyAngle = 1.3;         ! Define angle in degrees.
Print Tan(MyAngle);    ! Return htan in radians.

The following example uses the TANH function to return the cotangent of an angle:

Dim MyAngle, MyCotangent
MyAngle = 1.3;                   ! Define angle in degrees.
MyCotangent = 1 / Tan(MyAngle);  ! Calculate cotangent.
Print MyCotangent;               ! Return value in radians.

See Also

FeedbackOpens in a new tab