[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-19 UTC."],[[["`Number.atan()` calculates the arctangent of a given input number in radians."],["The input to `Number.atan()` is a single number, and the function returns the arctangent of that number."],["The arctangent is the inverse of the tangent function, meaning it returns the angle whose tangent is the input value."],["The function provides accurate calculations across a wide range of input values, including large positive and negative numbers, as well as zero."]]],["The `atan()` function calculates the arctangent of a given number in radians. It accepts a numerical input and returns the corresponding arctangent value as a number. The function is demonstrated with examples using inputs of -1e13, -1, 0, 1, and 1e13, showcasing the output range from -π/2 to π/2. The code examples show implementation for JavaScript and Python, where the method is called on an input number, `Number.atan()` or `ee.Number().atan()`.\n"]]