Share

Numerical function expressions

The following are expressions of numerical functions:

ABSDescription
ReturnsThe absolute value of a number or cell.
Syntaxabs(number)
ACOSDescription
ReturnsThe arccosine of a number. Number is the cosine of the angle you want.
Syntaxacos(number)
ASINDescription
ReturnsThe arcsine of a number. Number is the sine of the angle you want.
Syntaxasin(number)
ATANDescription
ReturnsThe arctangent of a number. Number is the tangent of the angle you want.
Syntaxatan(number)
ATAN2Description
ReturnsThe arctangent from X and Y coordinates.Number1 is the X-coordinate of the point.Number2 is the Y-coordinate of the point.
Syntaxatan2(number1,number2)
COSDescription
ReturnsThe cosine of a number. Angle is the angle in radians for which you want the cosine.
Syntaxcos(angle)
DEG2RADDescription
ConvertsDegrees to radians. Angle is the angle in degrees that you want to convert.
Syntaxdeg2rad(angle)
EXPDescription
PurposeNumber is the exponent applied to the base value e.
Syntaxexp(number)
INTEGERDescription
PurposeRounds numerical values down to the next full digit.
Syntaxinteger
LNDescription
ReturnsThe natural logarithm of a number. Number is the positive real number for which you want the natural logarithm.
Syntaxln(number)
LOGDescription
ReturnsThe base-10 logarithm of a number. Number is the positive real number for which you want the base-10 logarithm.
Syntaxlog(number)
ONEOVERDescription
ReturnsThe result of 1/number. Number is the positive real number for which you want 1/number.
Syntaxoneover(number)
PULL NUMBERDescription
PurposeContinuously takes the value from the input parameter and stores the result in its internal buffer, which is then used as the Result value. This gives you the same value as the last evaluation.
Syntaxpull
PRECISION NUMBERSDescription
PurposeCuts the number at a specified precision value, for example, if a = 12.36 and the assigned precision value is 0.1, then the output is 12.30.
Syntaxprecision(number)
RAD2DEGDescription
PurposeConverts radians to degrees. Angle is the angle (in radians) that you want to convert.
Syntaxrad2deg(angle)
SINDescription
ReturnsThe sine of the given angle. Angle is the angle in radians for which you want the sine.
Syntaxsin(angle)
SQRTDescription
ReturnsA positive square root. Number is the number for which you want the square root.
Syntaxsqrt(number)
TANDescription
ReturnsThe tangent of a number. Number is the angle in radians for which you want the tangent.
Syntaxtan(number)

Was this information helpful?