Calculates the arc sine of a field; the returned angle is in the range -π/2 through π/2.

Note

Math functions on ARM architecture may return different results in very high-precision calculationsc compared to Intel/AMD architectures.

ParameterTypeRequiredDefault ValueDescription
asstringoptional[a] _arcsin The name of the output field.
field[b]stringrequired   The name of the input field.

[a] Optional parameters use their default value unless explicitly set.

[b] The parameter name field can be omitted.

Hide omitted argument names for this function

Show omitted argument names for this function

math:arcsin() Examples

Click + next to an example below to get the full details.

Calculate Arc Sine of Value

Calculate the arc sine using the math:arcsin() function

Query
logscale
x := 0.5
        | math:arcsin(x, as=angle)
Introduction

In this example, the math:arcsin() function is used to calculate the arc sine of 0.5, which represents the angle whose sine is 0.5 (30 degrees or π/6 radians).

Step-by-Step
  1. Starting with the source repository events.

  2. logscale
    x := 0.5

    Assigns the value 0.5 to field x. This value represents the sine ratio of an angle, which should result in an angle of π/6 radians (30 degrees).

  3. logscale
    | math:arcsin(x, as=angle)

    Calculates the arc sine of the value in field x and returns the result in radians in a field named angle. If the as parameter is not specified, the result is returned in a field named _arcsin as default.

  4. Event Result set.

Summary and Results

The query is used to find angles from sine ratios, which is useful in trigonometric calculations and in determining angles when working with perpendicular components of vectors.

This query is useful, for example, to calculate angles from height-to-hypotenuse ratios, determine elevation angles, or analyze trigonometric relationships.

Sample output from the incoming example data:

angle
0.5235987755982989

The result shows that the arc sine of 0.5 is approximately 0.5236 radians (π/6 radians or 30 degrees). This means when the sine of an angle is 0.5, the angle is 30 degrees.

Note that the math:arcsin() function only accepts input values between -1 and 1 (inclusive) and returns values between -π/2 and π/2 radians (-90 to 90 degrees). Values outside this range will result in an error.

The math:arcsin() function is often used with math:rad2deg() when angles need to be displayed in degrees. Consider creating a dashboard comparing different inverse trigonometric functions (math:arcsin(), math:arccos(), math:arctan()) to understand their relationships.