tfp.substrates.numpy.math.atan_difference
Difference of arctan(x) and arctan(y).
View aliases
Main aliases
tfp.experimental.substrates.numpy.math.atan_difference
tfp.substrates.numpy.math.atan_difference(
x, y, name=None
)
Computes arctan(x) - arctan(y) avoiding catastrophic cancellation. This is
by resorting to the identity:
arctan(x) - arctan(y) = arctan((x - y) / (1 + x * y)) +
pi * sign(x) * 1_{x * y < -1)
where 1_A
is the indicator function on the set A
.
For a derivation of this fact, see [1].
References
[1] De Stefano, Sum of Arctangents
https://sites.google.com/site/micdestefano/mathematics/trigonometry/sum-of-arctangents
Args |
x
|
Floating-point Tensor. Should be broadcastable with y .
|
y
|
Floating-point Tensor. Should be broadcastable with x .
|
name
|
Optional Python str naming the operation.
|
Returns |
z
|
Tensor of same shape and dtype as x and 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.
Last updated 2023-11-21 UTC.
[null,null,["Last updated 2023-11-21 UTC."],[],[]]