Splunk® Cloud Services

SPL2 Search Reference

Acrobat logo Download manual as PDF


Acrobat logo Download topic as PDF

Trig and Hyperbolic functions

The following list contains the functions that you can use to calculate trigonometric and hyperbolic values.

For information about using string and numeric fields in functions, and nesting functions, see Overview of SPL2 eval functions.

acos(x)

This function computes the arc cosine of x, in the interval [0,pi] radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic examples

This example returns 1.5707963267948966.

... | eval n=acos(0)


The following example calculates 180 divided by pi and multiplies the result by the arc cosine of 0. This example returns 90.0000000003.

... | eval degrees=acos(0)*180/pi()


acosh(x)

This function computes the arc hyperbolic cosine of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 1.3169578969248166.

... | eval n=acosh(2)


asin(x)

This function computes the arc sine of x, in the interval [-pi/2,+pi/2] radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 1.5707963267948966.

... | eval n=asin(1)

The following example calculates 180 divided by pi and multiplies that by the arc sine of 1.

... | eval degrees=asin(1)*180/pi()


asinh(x)

This function computes the arc hyperbolic sine of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 0.881373587019543.

... | eval n=asinh(1)

atan(x)

This function computes the arc tangent of x, in the interval [-pi/2,+pi/2] radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 0.46.

... | eval n=atan(0.50)


atan2(y, x)

This function computes the arc tangent of y, x in the interval [-pi,+pi] radians.

  • y is a value that represents the proportion of the y-coordinate.
  • x is the value that represents the proportion of the x-coordinate.

To compute the value, the function takes into account the sign of both arguments to determine the quadrant.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 0.59.

... | eval n=atan2(0.50, 0.75)


atanh(x)

This function computes the arc hyperbolic tangent of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 0.549.

... | eval n=atanh(0.500)


cos(x)

This function computes the cosine of an angle of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic examples

This example returns 0.5403023058681398.

... | eval n=cos(-1)


The following example calculates the cosine of pi and returns -1.00000000000.

... | eval n=cos(pi())


cosh(x)

This function computes the hyperbolic cosine of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 1.5430806348152437.

... | eval n=cosh(1)

hypot(x,y)

This function computes the hypotenuse of a right-angled triangle whose legs are x and y.

The function returns the square root of the sum of the squares of X and Y, as described in the Pythagorean theorem.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

Creates a field called n and returns n=5, which is the hypotenuse of a triangle whose legs are 3 and 4.

... | eval n=hypot(3,4)

sin(x)

This function computes the sine of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic examples

This example returns 0.8414709848078965.

... | eval n=sin(1)


The following search calculates the sine of pi divided by 180 and then multiplied by 90.

... | eval n=sin(90 * pi()/180)


sinh(x)

This function computes the hyperbolic sine of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 1.1752011936438014.

... | eval n=sinh(1)


tan(x)

This function computes the tangent of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic examples

This example returns 1.5574077246549023.

... | eval n=tan(1)

This example returns -0.08871575677006045.

... | eval n=tan(135)


tanh(x)

This function computes the hyperbolic tangent of x radians.

Usage

You can use this function with the eval and where commands, in the WHERE clause of the from command, and as part of evaluation expressions with other commands.

Basic example

This example returns 0.7615941559557649.

... | eval n=tanh(1)

See also

Function information
Quick Reference for SPL2 eval functions
Overview of SPL2 eval functions
Naming function arguments in the SPL2 Search Manual
Last modified on 17 May, 2023
PREVIOUS
Text functions
  NEXT
Overview of SPL2 stats and chart functions

This documentation applies to the following versions of Splunk® Cloud Services: current


Was this documentation topic helpful?


You must be logged into splunk.com in order to post comments. Log in now.

Please try to keep this discussion focused on the content covered in this documentation topic. If you have a more general question about Splunk functionality or are experiencing a difficulty with Splunk, consider posting a question to Splunkbase Answers.

0 out of 1000 Characters