Skip to content

Commit ca2b32d

Browse files
authored
Merge pull request #28 from gjbex/development
Development
2 parents 9a64337 + 7025e21 commit ca2b32d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scientific_python.pptx

-2.32 KB
Binary file not shown.

source-code/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ to create it. There is some material not covered in the presentation as well.
2626
* [`birdsong`](birdsong): illustration of signal processing with scipy, reading
2727
and writing of a WAV file, computing the amplitude spectrum using FFT,
2828
applying a high-pass filter.
29-
* [`boekh`](bokeh): illustrations of how to create plots using bokeh, including
29+
* [`bokeh`](bokeh): illustrations of how to create plots using bokeh, including
3030
interactive plots.
3131
* [`hdf5`](hdf5): illustrations of how to create and access HDF5 files.
3232
* [`image-processing`](image-processing): illustrations of image processing

source-code/numpy/broadcast.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2278,9 +2278,9 @@
22782278
"id": "471eb127-a819-4fe0-aeab-6434713fedf0",
22792279
"metadata": {},
22802280
"source": [
2281-
"In all of the four scenarios considered, broadcasting alays had a better performance than `for` loops. It is also intereesting to notice that although the four scenarios are different, each of them does the exact same number of computations. This illustrates that the order in which elements of multi-dimensional arrays are accessed si quite important.\n",
2281+
"In all of the four scenarios considered, broadcasting always had a better performance than `for` loops. It is also interesting to notice that although the four scenarios are different, each of them does the exact same number of computations. This illustrates that the order in which elements of multi-dimensional arrays are accessed si quite important.\n",
22822282
"\n",
2283-
"It pays of the consider this when designing your software, since making changes to the data representation may become quite costly later in the software development process.\n",
2283+
"It pays off to consider this when designing your software, since making changes to the data representation may become quite costly later in the software development process.\n",
22842284
"\n",
22852285
"Also note that the operations we implemented in the use cases should be done using optimized libraries such as, e.g., OpenCV."
22862286
]
@@ -2302,7 +2302,7 @@
23022302
"name": "python",
23032303
"nbconvert_exporter": "python",
23042304
"pygments_lexer": "ipython3",
2305-
"version": "3.10.9"
2305+
"version": "3.13.5"
23062306
}
23072307
},
23082308
"nbformat": 4,

0 commit comments

Comments
 (0)