-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumpy2D.py
More file actions
478 lines (284 loc) · 10.4 KB
/
Copy pathNumpy2D.py
File metadata and controls
478 lines (284 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#!/usr/bin/env python
# coding: utf-8
# <center>
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/IDSNlogo.png" width="300" alt="cognitiveclass.ai logo" />
# </center>
#
# # 2D Numpy in Python
#
# Estimated time needed: **20** minutes
#
# ## Objectives
#
# After completing this lab you will be able to:
#
# * Operate comfortably with `numpy`
# * Perform complex operations with `numpy`
#
# <h2>Table of Contents</h2>
# <div class="alert alert-block alert-info" style="margin-thttps://op/?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkPY0101ENSkillsNetwork19487395-2021-01-01: 20px">
# <ul>
# <li><a href="https://create/?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkPY0101ENSkillsNetwork19487395-2021-01-01">Create a 2D Numpy Array</a></li>
# <li><a href="https://access/?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkPY0101ENSkillsNetwork19487395-2021-01-01">Accessing different elements of a Numpy Array</a></li>
# <li><a href="op">Basic Operations</a></li>
# </ul>
#
# </div>
#
# <hr>
#
# <h2 id="create">Create a 2D Numpy Array</h2>
#
# In[2]:
# Import the libraries
import numpy as np
import matplotlib.pyplot as plt
# Consider the list <code>a</code>, which contains three nested lists **each of equal size**.
#
# In[3]:
# Create a list
a = [[11, 12, 13], [21, 22, 23], [31, 32, 33]]
a
# We can cast the list to a Numpy Array as follows:
#
# In[4]:
# Convert list to Numpy Array
# Every element is the same type
A = np.array(a)
A
# We can use the attribute <code>ndim</code> to obtain the number of axes or dimensions, referred to as the rank.
#
# In[5]:
# Show the numpy array dimensions
A.ndim
# Attribute <code>shape</code> returns a tuple corresponding to the size or number of each dimension.
#
# In[6]:
# Show the numpy array shape
A.shape
# The total number of elements in the array is given by the attribute <code>size</code>.
#
# In[ ]:
# Show the numpy array size
A.size
# <hr>
#
# <h2 id="access">Accessing different elements of a Numpy Array</h2>
#
# We can use rectangular brackets to access the different elements of the array. The correspondence between the rectangular brackets and the list and the rectangular representation is shown in the following figure for a 3x3 array:
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoEg.png" width="500" />
#
# We can access the 2nd-row, 3rd column as shown in the following figure:
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoFT.png" width="400" />
#
# We simply use the square brackets and the indices corresponding to the element we would like:
#
# In[7]:
# Access the element on the second row and third column
A[1, 2]
# We can also use the following notation to obtain the elements:
#
# In[8]:
# Access the element on the second row and third column
A[1][2]
# Consider the elements shown in the following figure
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoFF.png" width="400" />
#
# We can access the element as follows:
#
# In[9]:
# Access the element on the first row and first column
A[0][0]
# We can also use slicing in numpy arrays. Consider the following figure. We would like to obtain the first two columns in the first row
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoFSF.png" width="400" />
#
# This can be done with the following syntax:
#
# In[10]:
# Access the element on the first row and first and second columns
A[0][0:2]
# Similarly, we can obtain the first two rows of the 3rd column as follows:
#
# In[11]:
# Access the element on the first and second rows and third column
A[0:2, 2]
# Corresponding to the following figure:
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/2D_numpy.png" width="550"><br />
#
# <h2 id="op">Basic Operations</h2>
#
# We can also add arrays. The process is identical to matrix addition. Matrix addition of <code>X</code> and <code>Y</code> is shown in the following figure:
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoAdd.png" width="500" />
#
# The numpy array is given by <code>X</code> and <code>Y</code>
#
# In[12]:
# Create a numpy array X
X = np.array([[1, 0], [0, 1]])
X
# In[13]:
# Create a numpy array Y
Y = np.array([[2, 1], [1, 2]])
Y
# We can add the numpy arrays as follows.
#
# In[14]:
# Add X and Y
Z = X + Y
Z
# Multiplying a numpy array by a scaler is identical to multiplying a matrix by a scaler. If we multiply the matrix <code>Y</code> by the scaler 2, we simply multiply every element in the matrix by 2, as shown in the figure.
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoDb.png" width="500" />
#
# We can perform the same operation in numpy as follows
#
# In[15]:
# Create a numpy array Y
Y = np.array([[2, 1], [1, 2]])
Y
# In[16]:
# Multiply Y with 2
Z = 2 * Y
Z
# Multiplication of two arrays corresponds to an element-wise product or <em>Hadamard product</em>. Consider matrix <code>X</code> and <code>Y</code>. The Hadamard product corresponds to multiplying each of the elements in the same position, i.e. multiplying elements contained in the same color boxes together. The result is a new matrix that is the same size as matrix <code>Y</code> or <code>X</code>, as shown in the following figure.
#
# <img src="https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-PY0101EN-SkillsNetwork/labs/Module%205/images/NumTwoMul.png" width="500" />
#
# We can perform element-wise product of the array <code>X</code> and <code>Y</code> as follows:
#
# In[ ]:
# Create a numpy array Y
Y = np.array([[2, 1], [1, 2]])
Y
# In[ ]:
# Create a numpy array X
X = np.array([[1, 0], [0, 1]])
X
# In[ ]:
# Multiply X with Y
Z = X * Y
Z
# We can also perform matrix multiplication with the numpy arrays <code>A</code> and <code>B</code> as follows:
#
# First, we define matrix <code>A</code> and <code>B</code>:
#
# In[ ]:
# Create a matrix A
A = np.array([[0, 1, 1], [1, 0, 1]])
A
# In[ ]:
# Create a matrix B
B = np.array([[1, 1], [1, 1], [-1, 1]])
B
# We use the numpy function <code>dot</code> to multiply the arrays together.
#
# In[ ]:
# Calculate the dot product
Z = np.dot(A,B)
Z
# In[ ]:
# Calculate the sine of Z
np.sin(Z)
# We use the numpy attribute <code>T</code> to calculate the transposed matrix
#
# In[ ]:
# Create a matrix C
C = np.array([[1,1],[2,2],[3,3]])
C
# In[ ]:
# Get the transposed of C
C.T
# <h2>Quiz on 2D Numpy Array</h2>
#
# Consider the following list <code>a</code>, convert it to Numpy Array.
#
# In[23]:
# Write your code below and press Shift+Enter to execute
a = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]
A = np.array(a)
A
# <details><summary>Click here for the solution</summary>
#
# ```python
# A = np.array(a)
# A
# ```
#
# </details>
#
# Calculate the numpy array size.
#
# In[25]:
# Write your code below and press Shift+Enter to execute
A.size
# <details><summary>Click here for the solution</summary>
#
# ```python
# A.size
# ```
#
# </details>
#
# Access the element on the first row and first and second columns.
#
# In[26]:
# Write your code below and press Shift+Enter to execute
A[0][0:2]
# <details><summary>Click here for the solution</summary>
#
# ```python
# A[0][0:2]
# ```
#
# </details>
#
# Perform matrix multiplication with the numpy arrays <code>A</code> and <code>B</code>.
#
# In[31]:
# Write your code below and press Shift+Enter to execute
B = np.array([[0, 1], [1, 0], [1, 1], [-1, 0]])
C = np.dot(A,B)
C
# <details><summary>Click here for the solution</summary>
#
# ```python
# X = np.dot(A,B)
# X
# ```
#
# </details>
#
# <hr>
# <h2>The last exercise!</h2>
# <p>Congratulations, you have completed your first lesson and hands-on lab in Python.
# <hr>
#
# ## Author
#
# <a href="https://www.linkedin.com/in/joseph-s-50398b136/?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkPY0101ENSkillsNetwork19487395-2021-01-01" target="_blank">Joseph Santarcangelo</a>
#
# ## Other contributors
#
# <a href="https://www.linkedin.com/in/jiahui-mavis-zhou-a4537814a?utm_medium=Exinfluencer&utm_source=Exinfluencer&utm_content=000026UJ&utm_term=10006555&utm_id=NA-SkillsNetwork-Channel-SkillsNetworkCoursesIBMDeveloperSkillsNetworkPY0101ENSkillsNetwork19487395-2021-01-01">Mavis Zhou</a>
#
# ## Change Log
#
# | Date (YYYY-MM-DD) | Version | Changed By | Change Description |
# | ----------------- | ------- | ---------- | ----------------------------------------------------------- |
# | 2022-01-10 | 2.1 | Malika | Removed the readme for GitShare |
# | 2021-01-05 | 2.2 | Malika | Updated the solution for dot multiplication |
# | 2020-09-09 | 2.1 | Malika | Updated the screenshot for first two rows of the 3rd column |
# | 2020-08-26 | 2.0 | Lavanya | Moved lab to course repo in GitLab |
# | | | | |
# | | | | |
#
# <hr/>
#
# ## <h3 align="center"> © IBM Corporation 2020. All rights reserved. <h3/>
#