FastChebInterp.jl icon indicating copy to clipboard operation
FastChebInterp.jl copied to clipboard

fast multidimensional Chebyshev interpolation and regression in Julia

Results 6 FastChebInterp.jl issues
Sort by recently updated
recently updated
newest added

If I want to extract the basis function matrix and coefficient vector after completing interpolation, what steps should I take?

documentation

It would be nice, in principle, to define chainrules for the chebpoly constructors, so that we support computation of sensitivities of e.g. polynomial evaluations to the *data* used to construct...

enhancement

I'm creating a set of `ChebPoly` objects as a surrogate for an expensive function in a package and I need a way to save and reload these functions. Does this...

enhancement

Can this package handle custom types in a Hilbert space? ```julia import Base: +, * struct Foo x::Float64 y::Float64 end +(f1::Foo, f2::Foo) = Foo(f1.x + f2.x, f1.y + f2.y) *(a::Real,...

enhancement

This function might be useful, e.g. for fitting in different norms. e.g. [see this discourse discussion](https://discourse.julialang.org/t/multivariate-polynomial-regression-of-discrete-data-in-l-infinity-norm/125369/7?u=stevengj)

documentation

Hi @stevengj, in first place, thanks for the nice package. I am exploring it for my application where I need to fit an array of data points on a pre-specified...