tfg.math.math_helpers.cartesian_to_spherical_coordinates
Stay organized with collections
Save and categorize content based on your preferences.
Function to transform Cartesian coordinates to spherical coordinates.
tfg.math.math_helpers.cartesian_to_spherical_coordinates(
point_cartesian: TensorLike,
eps: Float = None,
name: str = 'cartesian_to_spherical_coordinates'
) -> tf.Tensor
This function assumes a right handed coordinate system with z
pointing up.
When x
and y
are both 0
, the function outputs 0
for phi
. Note that
the function is not smooth when x = y = 0
.
Note |
In the following, A1 to An are optional batch dimensions.
|
Args |
point_cartesian
|
A tensor of shape [A1, ..., An, 3] . In the last
dimension, the data follows the x , y , z order.
|
eps
|
A small float , to be added to the denominator. If left as None , its
value is automatically selected using point_cartesian.dtype .
|
name
|
A name for this op. Defaults to "cartesian_to_spherical_coordinates".
|
Returns |
A tensor of shape [A1, ..., An, 3] . The last dimensions contains
(r ,theta ,phi ), where r is the sphere radius, theta is the polar
angle and phi is the azimuthal angle. Returns NaN gradient if x = y = 0.
|
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 2022-10-28 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 2022-10-28 UTC."],[],[]]