We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69fd74e commit d2108adCopy full SHA for d2108ad
README.md
@@ -18,7 +18,7 @@ np.random.seed(12345)
18
19
x, y = np.mgrid[-5:6:.5, -5:6:.5]
20
z = y * np.sin(x) + x * np.cos(y)
21
-zn = z + + np.random.randn(*x.shape) * 2.
+zn = z + np.random.randn(*x.shape) * 2.
22
23
zs = sgolay2.SGolayFilter2(9, 3)(zn)
24
examples/smooth_surface.py
@@ -11,7 +11,7 @@
11
def make_surface():
12
13
14
- zn = z + + np.random.randn(*x.shape) * 2.
+ zn = z + np.random.randn(*x.shape) * 2.
15
return x, y, z, zn
16
17
0 commit comments