Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[maint] Dependency on scipy #8

Open
alexfikl opened this issue May 15, 2023 · 0 comments
Open

[maint] Dependency on scipy #8

alexfikl opened this issue May 15, 2023 · 0 comments
Labels
maintenance Misc maintenance tasks

Comments

@alexfikl
Copy link
Owner

That's a pretty big dependency, but most people doing numerics in python will likely have it installed.

Currently used in (probably more as time goes on):

  • Evaluating Jacobi polynomials: from scipy.special import jacobi, eval_jacobi, roots_jacobi.
    • quad: Can probably get away with numpy.polynomial for Legendre and Chebyshev.
    • diff: Need to find how to simplify for Legendre and Chebyshev.
  • Mittag-Leffler: from scipy.special import gamma, erfc and from scipy.integrate import quad.
    • Functions available in import math. Would need to vectorize for numpy?
    • quad: fixed order? Would need to ensure high precision, but probably better for performance anyway.
@alexfikl alexfikl added the maintenance Misc maintenance tasks label May 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
maintenance Misc maintenance tasks
Projects
None yet
Development

No branches or pull requests

1 participant