Skip to content

Commit

Permalink
Check links to notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Aug 11, 2023
1 parent 63e870e commit 0513d96
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lessons/python/advection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
"$$\\frac{\\partial C}{\\partial t} = -v \\frac{\\partial C}{\\partial x} + D\\frac{\\delta^2 C}{\\delta x^2} \n",
"\\label{eq:5}\\tag{5}$$\n",
"\n",
"Copy-paste your script from the diffusion notebook. \n",
"Copy-paste your script from the [diffusion](./diffusion.ipynb) notebook. \n",
"Adjust the script by adding advection.\n",
"You can use the code derived in the previous blocks. \n",
"\n",
Expand Down
8 changes: 4 additions & 4 deletions lessons/python/arrays.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"metadata": {},
"source": [
"NumPy arrays have an attribute\n",
"(this is an object-oriented programming term; more [later](7_oop.ipynb))\n",
"(this is an object-oriented programming term; more [later](oop.ipynb))\n",
"called `shape` that provides the dimensions of an array.\n",
"\n",
"What is the shape of `a`?"
Expand Down Expand Up @@ -251,7 +251,7 @@
"source": [
"## Indexing\n",
"\n",
"NumPy arrays can be indexed in the manner described in the first lesson on [variables](1_fundamentals.ipynb)."
"NumPy arrays can be indexed in the manner described in the first lesson on [variables](fundamentals.ipynb)."
]
},
{
Expand Down Expand Up @@ -866,10 +866,10 @@
"\n",
"The [NumPy documentation](https://numpy.org/doc/stable/index.html) contains just about anything you'll need to know about NumPy.\n",
"\n",
"Last, although we deemphasize visualization here,\n",
"Although we deemphasize visualization in Ivy,\n",
"it almost always really helps to visualize data.\n",
"Data visualization is covered well in many other places,\n",
"but we do have a [notebook](./4a_plots.ipynb) demonstrating how to visualize the DEM data used here."
"but we do have a [notebook](./visualization.ipynb) demonstrating how to visualize the DEM data used here."
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion lessons/python/functions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"source": [
"# Functions\n",
"\n",
"In the [diffusion](8_diffusion.ipynb) and [advection](9_advection.ipynb) notebooks,\n",
"In the [diffusion](diffusion.ipynb) and [advection](advection.ipynb) notebooks,\n",
"we wrote code\n",
"to solve the one-dimensional diffusion and advection equations numerically,\n",
"evolve the solutions with time,\n",
Expand Down
1 change: 1 addition & 0 deletions lessons/python/oop.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
"metadata": {},
"outputs": [],
"source": [
"# Uncomment the next line to try to create a Shape.\n",
"# x = Shape()"
]
},
Expand Down

0 comments on commit 0513d96

Please sign in to comment.