Remove unused variable in example

This commit is contained in:
Juan Nunez-Iglesias
2015-06-09 11:45:10 +10:00
parent 46057c489b
commit 82a5d0c5d9
-1
View File
@@ -39,7 +39,6 @@ def microstructure(l=256):
"""
n = 5
x, y = np.ogrid[0:l, 0:l]
mask_outer = (x - l/2)**2 + (y - l/2)**2 < (l/2)**2
mask = np.zeros((l, l))
generator = np.random.RandomState(1)
points = l * generator.rand(2, n**2)