tfp.substrates.numpy.math.atan_difference
Stay organized with collections
Save and categorize content based on your preferences.
Difference of arctan(x) and arctan(y).
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.
[[["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 2023-11-21 UTC."],[],[]]