tf.math.atan2 | TensorFlow v2.16.1 (original) (raw)
tf.math.atan2
Computes arctangent of y/x element-wise, respecting signs of the arguments.
View aliases
Main aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.atan2, tf.compat.v1.math.atan2
tf.math.atan2(
y: Annotated[Any, tf.raw_ops.Any],
x: Annotated[Any, tf.raw_ops.Any],
name=None
) -> Annotated[Any, tf.raw_ops.Any]
Used in the notebooks
| Used in the tutorials |
|---|
| TFP Release Notes notebook (0.12.1) |
This is the angle \( \theta \in [-\pi, \pi] \) such that \[ x = r \cos(\theta) \] and \[ y = r \sin(\theta) \] where \(r = \sqrt{x^2 + y^2} \).
For example:
x = [1., 1.]
y = [1., -1.]
print((tf.math.atan2(y,x) * (180 / np.pi)).numpy())
[ 45. -45.]
| Args | |
|---|---|
| y | A Tensor. Must be one of the following types: bfloat16, half, float32, float64. |
| x | A Tensor. Must have the same type as y. |
| name | A name for the operation (optional). |
| Returns |
|---|
| A Tensor. Has the same type as y. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.