NumPy - Array Data Types
The following code throws an error. What is the cause?
import numpy as np z = np.array([1+2j, 3+4j], dtype='complex64') angle = np.angle(z, deg=True) print(angle)
