-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add roots #59
Comments
@dlfivefifty i can help with roots for hermite, legendre, lagaurre polynomials of degree N. Shall i start creating a PR if these roots are welcome ? |
I think we already have it in FastGaussQuadrature.jl |
1 similar comment
I think we already have it in FastGaussQuadrature.jl |
@dlfivefifty Sorry , i didn't knew that ! The way i was proposing to find roots was based on finding eigen values of tridiagonal jacobi matrices(that's the general way i guess). And i saw codes for jacobi matrices residing in ClassicalOrthogonalPolynomials.jl , so thought this must be the right place |
They use more sophisticated asymptotics which get O(n) complexity |
We could provide an interface to those routines. Say support |
We can port the code
https://github.com/JuliaApproximation/ApproxFunOrthogonalPolynomials.jl/blob/master/src/roots.jl
I think call it
findall(iszero,f)
.The text was updated successfully, but these errors were encountered: