Skip to content

Commit 2db6bc7

Browse files
author
ci-doc-deploy-bot
committed
[skip ci] docs build of 89b0464
1 parent 6cae11c commit 2db6bc7

19 files changed

+504
-494
lines changed

_sources/content/mooreslaw-tutorial.ipynb

Lines changed: 58 additions & 51 deletions
Large diffs are not rendered by default.

_sources/content/pairing.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "480c1f5b",
5+
"id": "120adfd0",
66
"metadata": {},
77
"source": [
88
"# Pairing Jupyter notebooks and MyST-NB\n",
@@ -76,7 +76,7 @@
7676
{
7777
"cell_type": "code",
7878
"execution_count": 1,
79-
"id": "7db84729",
79+
"id": "48d18dba",
8080
"metadata": {},
8181
"outputs": [
8282
{
@@ -94,7 +94,7 @@
9494
},
9595
{
9696
"cell_type": "markdown",
97-
"id": "a6ffe4c0",
97+
"id": "099c887d",
9898
"metadata": {},
9999
"source": [
100100
"---\n",
@@ -286,7 +286,7 @@
286286
"name": "python",
287287
"nbconvert_exporter": "python",
288288
"pygments_lexer": "ipython3",
289-
"version": "3.10.12"
289+
"version": "3.10.13"
290290
},
291291
"source_map": [
292292
13,

_sources/content/save-load-arrays.ipynb

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "90b77a04",
5+
"id": "163b5a5f",
66
"metadata": {},
77
"source": [
88
"# Saving and sharing your NumPy arrays\n",
@@ -37,7 +37,7 @@
3737
{
3838
"cell_type": "code",
3939
"execution_count": 1,
40-
"id": "762ddaea",
40+
"id": "e849a8f2",
4141
"metadata": {},
4242
"outputs": [],
4343
"source": [
@@ -46,7 +46,7 @@
4646
},
4747
{
4848
"cell_type": "markdown",
49-
"id": "34dd5581",
49+
"id": "11cd18b7",
5050
"metadata": {},
5151
"source": [
5252
"In this tutorial, you will use the following Python, IPython magic, and NumPy functions:\n",
@@ -64,7 +64,7 @@
6464
},
6565
{
6666
"cell_type": "markdown",
67-
"id": "e1da5249",
67+
"id": "0d18085f",
6868
"metadata": {},
6969
"source": [
7070
"---\n",
@@ -81,7 +81,7 @@
8181
{
8282
"cell_type": "code",
8383
"execution_count": 2,
84-
"id": "422ce751",
84+
"id": "ccb9fce5",
8585
"metadata": {},
8686
"outputs": [
8787
{
@@ -102,7 +102,7 @@
102102
},
103103
{
104104
"cell_type": "markdown",
105-
"id": "45db8770",
105+
"id": "c60998b1",
106106
"metadata": {},
107107
"source": [
108108
"## Save your arrays with NumPy's [`savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html?highlight=savez#numpy.savez)\n",
@@ -125,7 +125,7 @@
125125
{
126126
"cell_type": "code",
127127
"execution_count": 3,
128-
"id": "2abaf9de",
128+
"id": "d6f4e89c",
129129
"metadata": {},
130130
"outputs": [],
131131
"source": [
@@ -134,7 +134,7 @@
134134
},
135135
{
136136
"cell_type": "markdown",
137-
"id": "3f7afe5a",
137+
"id": "b29e24ae",
138138
"metadata": {},
139139
"source": [
140140
"## 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",
@@ -159,7 +159,7 @@
159159
{
160160
"cell_type": "code",
161161
"execution_count": 4,
162-
"id": "abe5ab08",
162+
"id": "de181ebb",
163163
"metadata": {},
164164
"outputs": [],
165165
"source": [
@@ -169,7 +169,7 @@
169169
{
170170
"cell_type": "code",
171171
"execution_count": 5,
172-
"id": "d26d2402",
172+
"id": "98469ffe",
173173
"metadata": {},
174174
"outputs": [
175175
{
@@ -189,7 +189,7 @@
189189
{
190190
"cell_type": "code",
191191
"execution_count": 6,
192-
"id": "be5fb2ee",
192+
"id": "80a5bdec",
193193
"metadata": {},
194194
"outputs": [
195195
{
@@ -209,7 +209,7 @@
209209
{
210210
"cell_type": "code",
211211
"execution_count": 7,
212-
"id": "6f1a5f77",
212+
"id": "169d1671",
213213
"metadata": {},
214214
"outputs": [
215215
{
@@ -229,7 +229,7 @@
229229
},
230230
{
231231
"cell_type": "markdown",
232-
"id": "fbe68f87",
232+
"id": "9b1683e5",
233233
"metadata": {},
234234
"source": [
235235
"## Reassign the NpzFile arrays to `x` and `y`\n",
@@ -242,7 +242,7 @@
242242
{
243243
"cell_type": "code",
244244
"execution_count": 8,
245-
"id": "befd7ed1",
245+
"id": "9afabe94",
246246
"metadata": {},
247247
"outputs": [
248248
{
@@ -263,7 +263,7 @@
263263
},
264264
{
265265
"cell_type": "markdown",
266-
"id": "2d39f49f",
266+
"id": "33a6a2d7",
267267
"metadata": {},
268268
"source": [
269269
"## Success\n",
@@ -294,7 +294,7 @@
294294
{
295295
"cell_type": "code",
296296
"execution_count": 9,
297-
"id": "6795690d",
297+
"id": "3bd7312c",
298298
"metadata": {},
299299
"outputs": [
300300
{
@@ -323,7 +323,7 @@
323323
},
324324
{
325325
"cell_type": "markdown",
326-
"id": "a55ea3d2",
326+
"id": "f7198db8",
327327
"metadata": {},
328328
"source": [
329329
"## Save the data to csv file using [`savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html#numpy.savetxt)\n",
@@ -338,7 +338,7 @@
338338
{
339339
"cell_type": "code",
340340
"execution_count": 10,
341-
"id": "feb5553a",
341+
"id": "571876da",
342342
"metadata": {},
343343
"outputs": [],
344344
"source": [
@@ -347,7 +347,7 @@
347347
},
348348
{
349349
"cell_type": "markdown",
350-
"id": "a7f15da0",
350+
"id": "14c1cd4e",
351351
"metadata": {},
352352
"source": [
353353
"Open the file, `x_y-squared.csv`, and you'll see the following:\n",
@@ -387,7 +387,7 @@
387387
{
388388
"cell_type": "code",
389389
"execution_count": 11,
390-
"id": "87abe590",
390+
"id": "48fdde24",
391391
"metadata": {},
392392
"outputs": [],
393393
"source": [
@@ -397,7 +397,7 @@
397397
{
398398
"cell_type": "code",
399399
"execution_count": 12,
400-
"id": "6d2fa410",
400+
"id": "f1143eee",
401401
"metadata": {},
402402
"outputs": [],
403403
"source": [
@@ -407,7 +407,7 @@
407407
{
408408
"cell_type": "code",
409409
"execution_count": 13,
410-
"id": "2aa00056",
410+
"id": "76353206",
411411
"metadata": {},
412412
"outputs": [
413413
{
@@ -428,7 +428,7 @@
428428
{
429429
"cell_type": "code",
430430
"execution_count": 14,
431-
"id": "11eb708f",
431+
"id": "ddd3623e",
432432
"metadata": {},
433433
"outputs": [
434434
{
@@ -449,7 +449,7 @@
449449
},
450450
{
451451
"cell_type": "markdown",
452-
"id": "671aae8a",
452+
"id": "65a731af",
453453
"metadata": {},
454454
"source": [
455455
"## Success, but remember your types\n",
@@ -460,7 +460,7 @@
460460
},
461461
{
462462
"cell_type": "markdown",
463-
"id": "47c8b1aa",
463+
"id": "2e3251a8",
464464
"metadata": {},
465465
"source": [
466466
"## Wrapping up\n",
@@ -495,7 +495,7 @@
495495
"name": "python",
496496
"nbconvert_exporter": "python",
497497
"pygments_lexer": "ipython3",
498-
"version": "3.10.12"
498+
"version": "3.10.13"
499499
},
500500
"source_map": [
501501
12,

0 commit comments

Comments
 (0)