Description Usage Arguments Details Value See Also Examples
Finds a polynomial function interpolating the given points
1 | polyinterp(x, y)
|
x |
a vector of x values |
y |
a vector of y values |
polyinterp finds a polynomial that interpolates the given points.
a polynomial equation's coefficients
Other interp:
bezier,
bilinear(),
cubicspline(),
linterp(),
nn(),
pwiselinterp()
Other algebra:
bilinear(),
cubicspline(),
division,
fibonacci(),
horner(),
isPrime(),
linterp(),
nthroot(),
pwiselinterp(),
quadratic()
1 2 3 | x <- c(1, 2, 3)
y <- x^2 + 5 * x - 3
f <- polyinterp(x, y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.