We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f55f7 commit b5601e8Copy full SHA for b5601e8
1 file changed
autoarray/structures/grids/uniform_2d.py
@@ -862,7 +862,7 @@ def distances_to_coordinate_from(
862
squared_distance = self.squared_distances_to_coordinate_from(
863
coordinate=coordinate
864
)
865
- distances = np.sqrt(squared_distance.array)
+ distances = jnp.sqrt(squared_distance.array)
866
return Array2D(values=distances, mask=self.mask)
867
868
def grid_2d_radial_projected_shape_slim_from(
0 commit comments