V4

parent 8c7e5169
...@@ -59,16 +59,11 @@ ...@@ -59,16 +59,11 @@
], ],
"source": [ "source": [
"import numpy as np\n", "import numpy as np\n",
"\n",
"np.random.seed(seed=42)\n", "np.random.seed(seed=42)\n",
"\n",
"N = 10000\n", "N = 10000\n",
"\n",
"x = np.random.uniform(size=N, low=0, high=1)\n", "x = np.random.uniform(size=N, low=0, high=1)\n",
"\n",
"theta = np.random.uniform(size=N, low=0, high=pi/2)\n", "theta = np.random.uniform(size=N, low=0, high=pi/2)\n",
"\n", "2/(sum((x+np.sin(theta))>1)/N)"
"2/(sum((x+np.sin(theta))>1)/N)\n"
] ]
}, },
{ {
...@@ -112,7 +107,7 @@ ...@@ -112,7 +107,7 @@
"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[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.scatter(x[reject], y[reject], c='r', alpha=0.2, edgecolor=None)\n",
"ax.set_aspect('equal')\n" "ax.set_aspect('equal')"
] ]
}, },
{ {
...@@ -141,13 +136,6 @@ ...@@ -141,13 +136,6 @@
"source": [ "source": [
"4*np.mean(accept)" "4*np.mean(accept)"
] ]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
} }
], ],
"metadata": { "metadata": {
......
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