Versions Compared

Key

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

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 Acos 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 Arc Sine 1 to the variable VAL.

VAR VAL;

VAL=CosAsin(601);

Function

n=TanAtan(number)

Description

Computes the Arc Tangent value.

Example

Returns Tan 60 Arc Tangent 1 to the variable VAL.

VAR VAL;

VAL=TanAtan(601);

...

Function

n=AsinAtan2(numbernumber1, number2)

Description

Computes the Arc Sine valueTangent value.

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

Example

Returns Arc Sine Tangent (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 Cos 60 to the variable VAL.

VAR VAL;

VAL=AcosCos(160);

 

Function

n=AtanCosh(number)

Description

Computes the Arc Tangent Hyperbolic Cosine value.

Example

Returns Arc Tangent 1 Hyperbolic Cosine 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 Sin 60 to the variable VAL.

VAR VAL;

VAL=SinhSin(060);

...

Function

n=CoshSinh(number)

Description

Computes the Hyperbolic Cosine Sine value.

Example

Returns Hyperbolic Cosine Sine 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 Tan 60 to the variable VAL.

VAR VAL;

VAL=TanhTan(060);

...

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) Hyperbolic Tangent 0 to the variable VAL.

VAR VAL;

VAL=Atan2Tanh(1,20);