Working with an np.ndarray
#
These exercises and drills aim to build your experience of using an np.ndarry
as opposed to a standard python list. Try to work through them all without looking at the answers first.
In practice you will come across complex problems that will make you scratch you head! If you are struggling with arrays then small steps will help!
Remember for any code where you wish to use numpy you need to import it:
import numpy as np
Exercise 1#
Task:
Create two numpy arrays of size 10;
The first array should be called
array_1
have all zero integer values;The second array
array_2
should be a sequence of integers from 90 to 99;Print the arrays.
The expected output of your code is:
[0 0 0 0 0 0 0 0 0 0]
[90 91 92 93 94 95 96 97 98 99]
# your code here ...
Exercise 2#
Task:
Continue to use
array_1
andarray_2
from exercise 1.Create a slice of
array_1
to access the last 5 elements of the array;Add the value 10 to each of the elements in the slice.
Now multiply the two arrays together and print out the result;
The expected result is:
[0, 0, 0, 0, 0, 950, 960, 970, 980, 990]
# your code here ...
Exercise 3#
You are given the following system of equations
The matrix form of these equations is:
Task:
If we denote the two matricies containing numeric data as
Represent \(A\) and \(B\) as seperate arrays.
Print the arrays to the screen.
Print the shape of the arrays.
# your code here...
Exercise 4#
To solve for the unknowns \(x\), \(y\) and \(z\) we need to take the dot product of the inverse of \(A\) and \(B\)
There are number of ways we can solve this in numpy
. One option is to use the np.dot
function to take the dot product. This can be combined with np.linalg.inv
to take the inverse of a matrix. Or more generally we can call np.linalg.solve()
to solve a system of linear equations.
Task
Using the matricies constructed in exercise 3 and the functions described above, solve for \(x\), \(y\) and \(z\)
# your code here
Exercise 5#
The code below generates a 1D array vector
with shape (15,)
. It is a sequence of numbers from 0 to 14.
Task:
Reshape the 1d array into a 2d array with shape
(5, 3)
The expected result is
[[ 0 1 2]
[ 3 4 5]
[ 6 7 8]
[ 9 10 11]
[12 13 14]]
vector = np.arange(15)
vector.shape
# your code here ...
(15,)
Exercise 6#
Use the 2 dimensional matrix that is the answer to exercise 5;
Slice the array to return elements 1 to 3 of the first column.
The expected output is:
[3 6 9]
# your code here ...
Exercise 7#
The code below generates a 1D array vector
with shape (100,)
. It is a sequence of numbers from 0 to 99.
Task:
Reshape the 1d array into a 3d array with shape
(2, 10, 5)
When printed to the screen the expected array should take the form
[[[ 0 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]]]
vector = np.arange(100)
print(vector.shape)
# your code here ...
(100,)
Exercise 8#
Remember one way to get to grips with slicing a 3D array is to look at the shape and think about how it all links together. In the last exercise the array td has a shape \((2, 10, 5)\). I think of this as 2 rows, each of which contains 10 sub vectors of length 5
Using the 3 dimensional array constructed in exercise 7 take the following slices and if necessary make the updates to the original data:
The second (i.e. index = 1) sub vector of each matrix. The expected answer is:
[[ 5 6 7 8 9]
[55 56 57 58 59]]
Elements 1 to 3 of the fifth subvector in each matrix. The expected answer is:
[[21 22 23]
[71 72 73]]
Can you produce following array from the original?
[[ 2 7 12 9999 22 27 32 37 42 47]
[ 3 8 13 9999 23 28 33 38 43 48]
[ 4 9 14 9999 24 29 34 39 44 49]]
Hints for final task:
You are replacing the values 17, 18 and 19.
From the first row of the array select the third sub vector.
In this subvector set the final 3 columns to 9999
Transpose the array.
To transpose an array you can call
.T
from an array. E.g.
>>> matrix = np.arange(10).reshape(-1, 5)
>>> print(matrix)
[[0 1 2 3 4]
[5 6 7 8 9]]
>>> print(matrix.T)
[[0 5]
[1 6]
[2 7]
[3 8]
[4 9]]
# your code here ...