June 2015
Beginner
348 pages
8h 44m
English
We will create a matrix from two smaller matrices as follows:
A = np.eye(2)
print("A", A)The identity matrix looks like the following:
A [[ 1. 0.] [ 0. 1.]]
A and multiply it by 2:B = 2 * A
print("B", B)The second matrix is as follows:
B [[ 2. 0.] [ 0. 2.]]
mat() function—use matrices instead of numbers:print("Compound matrix\n", np.bmat("A B; A B"))The compound matrix is shown as follows:
Compound matrix [[ 1. 0. 2. 0.] [ 0. 1. 0. 2.] [ 1. 0. 2. 0.] [ 0. 1. 0. 2.]]
We created a block matrix from two smaller matrices with ...
Read now
Unlock full access