no commit message

parent da980d58
......@@ -91,13 +91,15 @@
"import matplotlib.pyplot as plt\n",
"\n",
"np.random.seed(seed=42)\n",
"N=1000\n",
"x=np.random.uniform(size=N, low=0, high=1)\n",
"y=np.random.uniform(size=N, low=0, high=1)\n",
"accept=(x*x+y*y)<=1\n",
"reject=np.logical_not(accept)\n",
"N = 1000\n",
"x = np.random.uniform(size=N, low=0, high=1)\n",
"y = np.random.uniform(size=N, low=0, high=1)\n",
"\n",
"\n",
"accept = (x*x+y*y)<=1\n",
"reject = np.logical_not(accept)\n",
"\n",
"fig, ax=plt.subplots(1)\n",
"fig, ax = plt.subplots(1)\n",
"ax.scatter(x[accept], y[accept], c='b', alpha=0.2, edgecolor=None)\n",
"ax.scatter(x[reject], y[reject], c='r', alpha=0.2, edgecolor=None)\n",
"ax.set_aspect('equal')"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment