Add a function called `spectral_radius` that computes the [spectral_radius](https://en.wikipedia.org/wiki/Spectral_radius) of a given matrix.
A naive way to do this is `np.max(np.abs(np.linalg.eigvals(a)))`, but there are more efficient methods. _______________________________________________ NumPy-Discussion mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/numpy-discussion.python.org/ Member address: [email protected]
