Skip to content

Commit

Permalink
[skip ci] docs build of fd73d14
Browse files Browse the repository at this point in the history
  • Loading branch information
ci-doc-deploy-bot committed Jan 22, 2024
1 parent 0713323 commit 7b0b3d0
Show file tree
Hide file tree
Showing 40 changed files with 710 additions and 833 deletions.
90 changes: 45 additions & 45 deletions _sources/content/mooreslaw-tutorial.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions _sources/content/pairing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e693fad3",
"id": "0b3dee16",
"metadata": {},
"source": [
"# Pairing Jupyter notebooks and MyST-NB\n",
Expand Down Expand Up @@ -76,7 +76,7 @@
{
"cell_type": "code",
"execution_count": 1,
"id": "60564c23",
"id": "4add3eed",
"metadata": {},
"outputs": [
{
Expand All @@ -94,7 +94,7 @@
},
{
"cell_type": "markdown",
"id": "e3f6a8e3",
"id": "b0ef941e",
"metadata": {},
"source": [
"---\n",
Expand Down
50 changes: 25 additions & 25 deletions _sources/content/save-load-arrays.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "616d4bd0",
"id": "896aa5da",
"metadata": {},
"source": [
"# Saving and sharing your NumPy arrays\n",
Expand Down Expand Up @@ -37,7 +37,7 @@
{
"cell_type": "code",
"execution_count": 1,
"id": "61fb39cb",
"id": "19e14d66",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -46,7 +46,7 @@
},
{
"cell_type": "markdown",
"id": "bcbfa167",
"id": "27fdb3b6",
"metadata": {},
"source": [
"In this tutorial, you will use the following Python, IPython magic, and NumPy functions:\n",
Expand All @@ -64,7 +64,7 @@
},
{
"cell_type": "markdown",
"id": "9eba48f0",
"id": "3549bf9e",
"metadata": {},
"source": [
"---\n",
Expand All @@ -81,7 +81,7 @@
{
"cell_type": "code",
"execution_count": 2,
"id": "6f48f1fe",
"id": "e7637a07",
"metadata": {},
"outputs": [
{
Expand All @@ -102,7 +102,7 @@
},
{
"cell_type": "markdown",
"id": "2272a0e1",
"id": "757ff679",
"metadata": {},
"source": [
"## Save your arrays with NumPy's [`savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html?highlight=savez#numpy.savez)\n",
Expand All @@ -125,7 +125,7 @@
{
"cell_type": "code",
"execution_count": 3,
"id": "55460ba6",
"id": "c7e877ff",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -134,7 +134,7 @@
},
{
"cell_type": "markdown",
"id": "75d8daf5",
"id": "b635f3c5",
"metadata": {},
"source": [
"## Remove the saved arrays and load them back with NumPy's [`load`](https://numpy.org/doc/stable/reference/generated/numpy.load.html#numpy.load)\n",
Expand All @@ -159,7 +159,7 @@
{
"cell_type": "code",
"execution_count": 4,
"id": "d66163d1",
"id": "2730d1a9",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -169,7 +169,7 @@
{
"cell_type": "code",
"execution_count": 5,
"id": "2f43881d",
"id": "d14838f5",
"metadata": {},
"outputs": [
{
Expand All @@ -189,7 +189,7 @@
{
"cell_type": "code",
"execution_count": 6,
"id": "43e7704c",
"id": "9b87644b",
"metadata": {},
"outputs": [
{
Expand All @@ -209,7 +209,7 @@
{
"cell_type": "code",
"execution_count": 7,
"id": "a027acf0",
"id": "8c6f2560",
"metadata": {},
"outputs": [
{
Expand All @@ -229,7 +229,7 @@
},
{
"cell_type": "markdown",
"id": "5fae6bcd",
"id": "555b10eb",
"metadata": {},
"source": [
"## Reassign the NpzFile arrays to `x` and `y`\n",
Expand All @@ -242,7 +242,7 @@
{
"cell_type": "code",
"execution_count": 8,
"id": "f293acac",
"id": "f31df649",
"metadata": {},
"outputs": [
{
Expand All @@ -263,7 +263,7 @@
},
{
"cell_type": "markdown",
"id": "b93efba4",
"id": "f7549957",
"metadata": {},
"source": [
"## Success\n",
Expand Down Expand Up @@ -294,7 +294,7 @@
{
"cell_type": "code",
"execution_count": 9,
"id": "51b98888",
"id": "69cb2a08",
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -323,7 +323,7 @@
},
{
"cell_type": "markdown",
"id": "6ef33614",
"id": "e264d250",
"metadata": {},
"source": [
"## Save the data to csv file using [`savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html#numpy.savetxt)\n",
Expand All @@ -338,7 +338,7 @@
{
"cell_type": "code",
"execution_count": 10,
"id": "c0a12200",
"id": "e8da8648",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -347,7 +347,7 @@
},
{
"cell_type": "markdown",
"id": "d884106b",
"id": "9d53ede6",
"metadata": {},
"source": [
"Open the file, `x_y-squared.csv`, and you'll see the following:\n",
Expand Down Expand Up @@ -387,7 +387,7 @@
{
"cell_type": "code",
"execution_count": 11,
"id": "d1366d41",
"id": "3a8878c2",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -397,7 +397,7 @@
{
"cell_type": "code",
"execution_count": 12,
"id": "a4e6abe8",
"id": "b4b71d87",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -407,7 +407,7 @@
{
"cell_type": "code",
"execution_count": 13,
"id": "6874dea2",
"id": "8cb66d94",
"metadata": {},
"outputs": [
{
Expand All @@ -428,7 +428,7 @@
{
"cell_type": "code",
"execution_count": 14,
"id": "9b3f1512",
"id": "12171f4d",
"metadata": {},
"outputs": [
{
Expand All @@ -449,7 +449,7 @@
},
{
"cell_type": "markdown",
"id": "cf05c65f",
"id": "c364bceb",
"metadata": {},
"source": [
"## Success, but remember your types\n",
Expand All @@ -460,7 +460,7 @@
},
{
"cell_type": "markdown",
"id": "761ea7f3",
"id": "ba80dfca",
"metadata": {},
"source": [
"## Wrapping up\n",
Expand Down
Loading

0 comments on commit 7b0b3d0

Please sign in to comment.