On Sat, Mar 1, 2025 at 9:17 PM Carlos Martin <[email protected]>
wrote:

> 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.
>

Thanks for the suggestion Carlos. This will be out of scope for
numpy.linalg, but may be a good addition for scipy.linalg.

Cheers,
Ralf




> _______________________________________________
> 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]
>
_______________________________________________
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]

Reply via email to