Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit c9e26e4

Browse files
committed
Remove completed TODO and add comments
1 parent 28ce5ce commit c9e26e4

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

diffusive_distinguishability/test_overestimation.ipynb

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,25 +71,18 @@
7171
"results3 = [calc_percent(radius, radius*ratio, 3, N) for ratio in ratio_list]"
7272
]
7373
},
74-
{
75-
"cell_type": "markdown",
76-
"metadata": {},
77-
"source": [
78-
"Next TO DO:\n",
79-
"extract percent errors to fix below plotting\n",
80-
"then repeat for mean and median dist/separation to see HOW off they are"
81-
]
82-
},
8374
{
8475
"cell_type": "code",
8576
"execution_count": 10,
8677
"metadata": {},
8778
"outputs": [],
8879
"source": [
80+
"# extract percent errors as a function of nondimensional spacing (separation/R) for each number of spatial dimensions (to plot in Figure 1)\n",
8981
"percent1 = [output[0] for output in results1]\n",
9082
"percent2 = [output[0] for output in results2]\n",
9183
"percent3 = [output[0] for output in results3]\n",
9284
"\n",
85+
"# extract median nondimensional distances (dist/separation) as a function of nondimensional spacing for each number of dimensions (to plot in Figure 2)\n",
9386
"med1 = [output[1] for output in results1]\n",
9487
"med2 = [output[1] for output in results2]\n",
9588
"med3 = [output[1] for output in results3]"

0 commit comments

Comments
 (0)