Skip to content

Commit

Permalink
Merge pull request #26 from kohr-h/fix_underscore
Browse files Browse the repository at this point in the history
Remove _ syntax for `show` and add missing outputs
  • Loading branch information
adler-j committed Dec 20, 2017
2 parents 142c9da + 2d3144a commit fbe58d5
Show file tree
Hide file tree
Showing 4 changed files with 482 additions and 157 deletions.
317 changes: 250 additions & 67 deletions code/part1_tv_denoising.ipynb

Large diffs are not rendered by default.

191 changes: 170 additions & 21 deletions code/part1_using_a_different_solver.ipynb

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions code/part4_real_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -23,7 +23,7 @@
"from PIL import Image\n",
"import odl\n",
"import odl_multigrid\n",
"import os\n"
"import os"
]
},
{
Expand Down Expand Up @@ -844,9 +844,9 @@
}
],
"source": [
"_ = x2.show(coords=[None, None, np.mean(z_window)], clim=[0, 0.6])\n",
"_ = x2.show(coords=[None, np.mean(y_window), None], clim=[0, 0.6])\n",
"_ = x2.show(coords=[np.mean(x_window), None, None], clim=[0, 0.6])"
"x2.show(coords=[None, None, np.mean(z_window)], clim=[0, 0.6]);\n",
"x2.show(coords=[None, np.mean(y_window), None], clim=[0, 0.6]);\n",
"x2.show(coords=[np.mean(x_window), None, None], clim=[0, 0.6]);"
]
}
],
Expand All @@ -866,7 +866,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.6.3"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit fbe58d5

Please sign in to comment.