summaryrefslogtreecommitdiff
path: root/accessing_parts_of_arrays/slides.org
diff options
context:
space:
mode:
authorJovina2011-08-03 12:53:36 +0530
committerJovina2011-08-03 12:53:36 +0530
commit6062664292d84a979b5341bed1b8555cd8880b2c (patch)
tree5bf75c2cf50b99bfff2315a26dd0086d8fecd517 /accessing_parts_of_arrays/slides.org
parente21d3ae97d36f9d40caf22c91ad0bade588411c4 (diff)
downloadst-scripts-6062664292d84a979b5341bed1b8555cd8880b2c.tar.gz
st-scripts-6062664292d84a979b5341bed1b8555cd8880b2c.tar.bz2
st-scripts-6062664292d84a979b5341bed1b8555cd8880b2c.zip
Minor correction to 'accessing parts of arrays '.
Diffstat (limited to 'accessing_parts_of_arrays/slides.org')
-rw-r--r--accessing_parts_of_arrays/slides.org6
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