[null,null,["Last updated 2024-04-26 UTC."],[],[],null,["# tf.math.asin\n\n\u003cbr /\u003e\n\nComputes the trignometric inverse sine of x element-wise.\n\n#### View aliases\n\n\n**Main aliases**\n\n[`tf.asin`](https://www.tensorflow.org/api_docs/python/tf/math/asin)\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.asin`](https://www.tensorflow.org/api_docs/python/tf/math/asin)\n\n\u003cbr /\u003e\n\n tf.math.asin(\n x: Annotated[Any, ../../tf/raw_ops/Any],\n name=None\n ) -\u003e Annotated[Any, ../../tf/raw_ops/Any]\n\nThe [`tf.math.asin`](../../tf/math/asin) operation returns the inverse of [`tf.math.sin`](../../tf/math/sin), such that\nif `y = tf.math.sin(x)` then, `x = tf.math.asin(y)`.\n| **Note:** The output of [`tf.math.asin`](../../tf/math/asin) will lie within the invertible range of sine, i.e \\[-pi/2, pi/2\\].\n\n#### For example:\n\n # Note: [1.047, 0.785] ~= [(pi/3), (pi/4)]\n x = tf.constant([1.047, 0.785])\n y = tf.math.sin(x) # [0.8659266, 0.7068252]\n\n tf.math.asin(y) # [1.047, 0.785] = x\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|--------|----------------------------------------------------------------------------------------------------------------------|\n| `x` | A `Tensor`. Must be one of the following types: `bfloat16`, `half`, `float32`, `float64`, `complex64`, `complex128`. |\n| `name` | A name for the operation (optional). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A `Tensor`. Has the same type as `x`. ||\n\n\u003cbr /\u003e"]]