Skip to content

Commit 7fc9df7

Browse files
committed
blackify core_meshDS_numpy
1 parent ccc9c33 commit 7fc9df7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/core_meshDS_numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def getMesh(X=100, Y=100):
1616
x = np.linspace(-5, 5, X)
1717
y = np.linspace(-5, 5, Y)
1818
xx, yy = np.meshgrid(x, y, sparse=False)
19-
z = np.sin(xx ** 2 + yy ** 2) / (xx ** 2 + yy ** 2)
19+
z = np.sin(xx**2 + yy**2) / (xx**2 + yy**2)
2020
xyz = np.column_stack((xx.flatten(), yy.flatten(), z.flatten()))
2121
tri = Delaunay(xyz[:, :2])
2222
return xyz, tri.simplices

0 commit comments

Comments
 (0)