In this python numpy program, we will create a 3×3 identify matrix
Steps to solve the program
- Import the numpy library as np.
- Create a 3×3 identity matrix using np.identity().
- Print the output.
import numpy as np
x = np.identity(3)
print(x)
Output :
[[1. 0. 0.]
[0. 1. 0.]
[0. 0. 1.]]