From 54e5b18210b446d19eb474cbe9fbf016c942b4ef Mon Sep 17 00:00:00 2001 From: 5654df13e3a49d9a58b10463b7cbf1af <5654df13e3a49d9a58b10463b7cbf1af@app-learninglab.inria.fr> Date: Fri, 5 Nov 2021 13:02:54 +0000 Subject: [PATCH] V4 --- module2/exo1/toy_notebook_fr.ipynb | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/module2/exo1/toy_notebook_fr.ipynb b/module2/exo1/toy_notebook_fr.ipynb index 995709f..770c59e 100644 --- a/module2/exo1/toy_notebook_fr.ipynb +++ b/module2/exo1/toy_notebook_fr.ipynb @@ -59,16 +59,11 @@ ], "source": [ "import numpy as np\n", - "\n", "np.random.seed(seed=42)\n", - "\n", "N = 10000\n", - "\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", - "\n", - "2/(sum((x+np.sin(theta))>1)/N)\n" + "2/(sum((x+np.sin(theta))>1)/N)" ] }, { @@ -112,7 +107,7 @@ "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')\n" + "ax.set_aspect('equal')" ] }, { @@ -141,13 +136,6 @@ "source": [ "4*np.mean(accept)" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { -- 2.18.1