diff options
Diffstat (limited to 'accessing_parts_of_arrays/slides.org')
-rw-r--r-- | accessing_parts_of_arrays/slides.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accessing_parts_of_arrays/slides.org b/accessing_parts_of_arrays/slides.org index 98d5923..621a2ef 100644 --- a/accessing_parts_of_arrays/slides.org +++ b/accessing_parts_of_arrays/slides.org @@ -33,7 +33,7 @@ #+begin_latex \begin{center} \vspace{12pt} -\textcolor{blue}{\huge Getting started with Arrays} +\textcolor{blue}{\huge Accessing pieces of Arrays} \end{center} \vspace{18pt} \begin{center} @@ -115,7 +115,7 @@ 2. Given the array, - C = array([[10, 11, 12, 13], + B = array([[10, 11, 12, 13], [20, 21, 22, 23], [30, 31, 32, 33], [40, 41, 42, 43]]) @@ -137,7 +137,7 @@ 2. B[1:3, 1:3] - 3. B[:2, 2:] = B[:2, :2] + 3. C[:2, 2:] = C[:2, :2] * #+begin_latex |