SciPy - Linear Algebra (scipy.linalg)
What will be the output of the following code?
import numpy as np from scipy.linalg import eig A = np.array([[0, -1], [1, 0]]) values, vectors = eig(A) print(values)
