-
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
basis function matrix and coefficient vector #20
Comments
By basis-function matrix I guess you mean the Chebyshev–Vandermonde matrix? We don't compute this matrix at all for interpolation (and instead use a much faster algorithm via FFTs). It is computed during regression, but is not saved. However, you can construct it by calling Given a |
Hi @stevengj, thank you for this great package! Following up on this issue, I have a 4D Thank you very much! |
The whole point of using Chebyshev polynomials is that you don't want to compute the monomial coefficients — that basis is very badly behaved at high degrees. The Chebyshev polynomial coefficients are stored in |
Hi @stevengj, I understand that. I wanted to perform the conversion for comparison not computation. This answers my question though, thank you! |
If I want to extract the basis function matrix and coefficient vector after completing interpolation, what steps should I take?
The text was updated successfully, but these errors were encountered: