Versions Compared

Key

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

Cos(

X

Number x)

Returns the trigonometric cosine of an angle

ACos(

X

Number x)

Returns the arc cosine of a value

Cosh(

X

Number x)

Returns the hyperbolic cosine of a double value

Sin(

X

Number x)

Returns the trigonometric sine of an angle

ASin(

X

Number x)

Returns the arc sine of a value

Sinh(

X

Number x)

Returns the hyperbolic sine of a double value

Tan(

X

Number x)

Returns the trigonometric tangent of an angle

ATan(

X

Number x)

Returns the arc tangent of a value

ATan2(

Y

Number x,

X

Number y)

Returns the angle theta from the conversion of rectangular coordinates (x, y) to polar coordinates (r, theta)

Tanh(

X

Number x)

Returns the hyperbolic tangent of a double value

Abs(

X

Number x)

Returns the absolute value of a value

Sign(

X

Number x)

Returns the signum function of the argument

Sqrt(

X

Number x)

Returns the square root of a value

Ceil(

X

Number x)

Returns the smallest value that is greater than or equal to the argument and is equal to a mathematical integer.

Floor(

X

Number x)

Returns the largest value that is less than or equal to the argument and is equal to a mathematical integer.

Round(

X

Number x)

Returns the closest number to the argument, with ties rounding up

Log(

X

Number x)

Returns the natural logarithm (base e) of a double value

 

Log10(Number x)

 

Returns the logarithm (base 10) of a double value

Exp(

X

Number x)

Returns Euler's number e raised to the power of a double value

PI()

Returns the double value that is closer than any other to pi.

E()

Returns the double value that is closer than any other to e

isNaN(Object x)

Checks whether the given object is not a number

ToRadians(

X

Number degree)

Converts an angle measured in degrees to an equivalent angle measured in radians.

ToDegrees(

X

Number radian)

Converts an angle measured in radians to an equivalent angle measured in degrees.

Table of Contents