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

Interpolation doesn't work for non-integral domains

Open wbhart opened this issue 8 years ago • 1 comments

Is it possible to interpolate over a non-integral domain? The current implementation doesn't work, though raises an impossible inverse error for now.

wbhart avatar Oct 07 '17 20:10 wbhart

Polynomial interpolation is the same thing as solving the linear system (Vandermonde matrix) * (coefficients) = (values), so it could be done by falling back on linear solving for non-integral domains.

fredrik-johansson avatar Oct 07 '17 21:10 fredrik-johansson