Expand description
Contains algorithms for polynomial interpolation.
Enums§
- Interpolation
Error unstable-enable
- Availability
Functions§
- interpolate
unstable-enable
- Uses Lagrange interpolation to compute the interpolation polynomial of the given values.
Concretely, this is the univariate polynomial
f
of degree< x.len()
such thatf(x[i]) = y[i]
for alli
. - interpolate_
multivariate unstable-enable
- Availability
- product_
except_ one unstable-enable
- Computes
out[i] = prod_(j != i) values[j]
.