toy_notebook_final_2

parent 9d3b8d4f
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 2, "execution_count": 6,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
"3.128911138923655" "3.128911138923655"
] ]
}, },
"execution_count": 2, "execution_count": 6,
"metadata": {}, "metadata": {},
"output_type": "execute_result" "output_type": "execute_result"
} }
...@@ -76,9 +76,9 @@ ...@@ -76,9 +76,9 @@
"source": [ "source": [
"import numpy as np\n", "import numpy as np\n",
"np.random.seed(seed=42)\n", "np.random.seed(seed=42)\n",
"N=10000\n", "N = 10000\n",
"x=np.random.uniform(size=N, low=0, high=1)\n", "x = np.random.uniform(size=N, low=0, high=1)\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",
"2/(sum((x+np.sin(theta))>1)/N)" "2/(sum((x+np.sin(theta))>1)/N)"
] ]
}, },
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 3, "execution_count": 7,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
...@@ -113,15 +113,15 @@ ...@@ -113,15 +113,15 @@
"import matplotlib.pyplot as plt\n", "import matplotlib.pyplot as plt\n",
"\n", "\n",
"np.random.seed(seed=42)\n", "np.random.seed(seed=42)\n",
"N=1000\n", "N = 1000\n",
"x=np.random.uniform(size=N, low=0, high=1)\n", "x = np.random.uniform(size=N, low=0, high=1)\n",
"y=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", "accept = (x*x+y*y)<=1\n",
"reject=np.logical_not(accept)\n", "reject = np.logical_not(accept)\n",
"\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[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')" "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