author | Anoop Jacob Thomas<anoop@fossee.in> |
Sun, 07 Nov 2010 19:47:26 +0530 | |
changeset 399 | 3c16961361cd |
parent 157 | a1111c1815f6 |
permissions | -rw-r--r-- |
144
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
1 |
======== |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
2 |
Script |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
3 |
======== |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
4 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
5 |
Welcome. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
6 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
7 |
This spoken tutorial is a self-assessment tutorial and you will be |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
8 |
able to assess yourself on the concepts learnt in the Module on Arrays |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
9 |
and Matrices. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
10 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
11 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
12 |
As with all other assessments we will first start with a few short |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
13 |
questions that will not take you more that 15 to 20 seconds to |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
14 |
answer. Then we shall move on to a bigger problem, that you are |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
15 |
expected to solve in less than 10 mins. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
16 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
17 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
18 |
* Given a list of marks:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
19 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
20 |
marks = [10, 20, 30, 50, 55, 75, 83] |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
21 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
22 |
How will you convert it to an array? |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
23 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
24 |
* What is the shape of the following array?:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
25 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
26 |
x = array([[1,2,3,4], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
27 |
[3,4,2,5]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
28 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
29 |
* What is the resulting array:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
30 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
31 |
a = array([[1, 2], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
32 |
[3, 4]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
33 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
34 |
a[1,0] = 0 |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
35 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
36 |
* What is the resulting array?:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
37 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
38 |
x = array(([1,2,3,4], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
39 |
[2,3,4,5])) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
40 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
41 |
x[-2][-3] = 4 |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
42 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
43 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
44 |
* How do we change the array ``x = array([[1,2,3,4]])`` to |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
45 |
``array([[1,2,0,4]])``? |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
46 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
47 |
* How do we get the slice:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
48 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
49 |
array([[2,3], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
50 |
[4,2]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
51 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
52 |
out of the array:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
53 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
54 |
x = array([[1,2,3,4], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
55 |
[3,4,2,5]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
56 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
57 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
58 |
* What is the output of x[::3,::3], when x is:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
59 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
60 |
x = array([[9,18,27], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
61 |
[30,60,90], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
62 |
[14,7,1]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
63 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
64 |
* How do you get the transpose of this array?:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
65 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
66 |
a = array([[1, 2], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
67 |
[3, 4]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
68 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
69 |
* What is the output of the following?:: |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
70 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
71 |
a = array([[1, 2], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
72 |
[3, 4]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
73 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
74 |
b = array([[1, 1], |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
75 |
[2, 2]]) |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
76 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
77 |
a*b |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
78 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
79 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
80 |
{{{ show slides with solutions to these problems }}} |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
81 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
82 |
Now, let us move on to a larger problem. From the image |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
83 |
`tagore-einstein.png`` |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
84 |
|
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
85 |
+ extract the face of Einstein alone. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
86 |
+ extract the face of Tagore alone. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
87 |
+ get a smaller copy of the image, that is a fourth it's size. |
476ea1730aee
Added rst files for scripts.
Puneeth Chaganti <punchagan@gmail.com>
parents:
diff
changeset
|
88 |
|
157
a1111c1815f6
Minor changes to arrays and matrices assessment.
Puneeth Chaganti <punchagan@fossee.in>
parents:
144
diff
changeset
|
89 |
|
a1111c1815f6
Minor changes to arrays and matrices assessment.
Puneeth Chaganti <punchagan@fossee.in>
parents:
144
diff
changeset
|
90 |
{{{ show slide with solutions to the problem }}} |
a1111c1815f6
Minor changes to arrays and matrices assessment.
Puneeth Chaganti <punchagan@fossee.in>
parents:
144
diff
changeset
|
91 |
|
a1111c1815f6
Minor changes to arrays and matrices assessment.
Puneeth Chaganti <punchagan@fossee.in>
parents:
144
diff
changeset
|
92 |
Thank You! |