Skip to content

Commit d2108ad

Browse files
committedMar 10, 2019
Fix misprint
1 parent 69fd74e commit d2108ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ np.random.seed(12345)
1818

1919
x, y = np.mgrid[-5:6:.5, -5:6:.5]
2020
z = y * np.sin(x) + x * np.cos(y)
21-
zn = z + + np.random.randn(*x.shape) * 2.
21+
zn = z + np.random.randn(*x.shape) * 2.
2222

2323
zs = sgolay2.SGolayFilter2(9, 3)(zn)
2424

‎examples/smooth_surface.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def make_surface():
1212
x, y = np.mgrid[-5:6:.5, -5:6:.5]
1313
z = y * np.sin(x) + x * np.cos(y)
14-
zn = z + + np.random.randn(*x.shape) * 2.
14+
zn = z + np.random.randn(*x.shape) * 2.
1515
return x, y, z, zn
1616

1717

0 commit comments

Comments
 (0)
Please sign in to comment.