Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note: all angle values are in radians.

Type

Format

Description

Function

Acos(number)

Computes the Arc Cosine value.

Function

Asin(number)

Computes the Arc Sine value.

Function

Atan(number)

Computes the Arc Tangent value.

Function

Atan2(number1, number2)

Computes the Arc Tangent value of number1/number2.

Function

Cos(number)

Computes the Cosine value.

Function

Cosh(number)

Computes the Hyperbolic Cosine value.

Function

Sin(number)

Computes the Sine value.

Function

Sinh(number)

Computes the Hyperbolic Sine value.

Function

Tan(number)

Computes the Tangent value.

Function

Tanh (number)

Computes the Hyperbolic Tangent value.

...

Function

n=SinAcos(number)

Description

Computes the Sine Arc Cosine value.

Example

Returns Sin 60 the Arc Cosine of 1 to the variable VAL.

VAR VAL;

VAL=SinAcos(601);

 

Function

n=CosAsin(number)

Description

Computes the Cosine Arc Sine value.

Example

Returns Cos 60 the Arc Sine of 1 to the variable VAL.

VAR VAL;

VAL=CosAsin(601);

Function

n=TanAtan(number)

Description

Computes the Arc Tangent value.

Example

Returns Tan 60 the Arc Tangent of 1 to the variable VAL.

VAR VAL;

VAL=TanAtan(601);

...

Function

n=AsinAtan2(numbernumber1, number2)

Description

Computes the Arc Sine Tangent value.

Unlike the Atan() function, returns the Arc Tangent of number1/number2.

Example

Returns the Arc Sine 1 Tangent of (1/2) to the variable VAL.

VAR VAL;

VAL=AsinAtan2(1,2);

 

Function

n=AcosCos(number)

Description

Computes the Arc Cosine value.

Example

Returns Acos 1 the Cosine of 3.14159 to the variable VAL.

VAR VAL;

VAL=AcosCos(13.14159);

...

Function

n=AtanCosh(number)

Description

Computes the Arc Tangent Hyperbolic Cosine value.

Example

Returns Arc Tangent 1 the Hyperbolic Cosine of 0 to the variable VAL.

VAR VAL;

VAL=AtanCosh(10);

...

Function

n=SinhSin(number)

Description

Computes the Hyperbolic Sine value.

Example

Returns Hyperbolic Sine 0 the sine of 3.14159 to the variable VAL.

VAR VAL;

VAL=SinhSin(03.14159);

 

Function

n=CoshSinh(number)

Description

Computes the Hyperbolic Cosine Sine value.

Example

Returns the Hyperbolic Cosine Sine of 0 to the variable VAL.

VAR VAL;

VAL=CoshSinh(0);

...

Function

n=TanhTan(number)

Description

Computes the Hyperbolic Tangent value.

Example

Returns Hyperbolic Tangent 0 the Tangent of 3.14159 to the variable VAL.

VAR VAL;

VAL=TanhTan(03.14159);

 

Function

n=Atan2Tanh(number1, number2number)

Description

Computes the Arc Hyperbolic Tangent value.Unlike the Atan() function, returns the Arc Tangent of number1/number2.

Example

Returns Arc Tangent (1/2) the Hyperbolic Tangent of 0 to the variable VAL.

VAR VAL;

VAL=Atan2Tanh(1,20);

...