polyinterp {cmna}R Documentation

Polynomial interpolation

Description

Finds a polynomial function interpolating the given points

Usage

polyinterp(x, y)

Arguments

x

a vector of x values

y

a vector of y values

Details

polyinterp finds a polynomial that interpolates the given points.

Value

a polynomial equation's coefficients

See Also

Other interp: bezier, bilinear(), cubicspline(), linterp(), nn(), pwiselinterp()

Other algebra: bilinear(), cubicspline(), division, fibonacci(), horner(), isPrime(), linterp(), nthroot(), pwiselinterp(), quadratic()

Examples

x <- c(1, 2, 3)
y <- x^2 + 5 * x - 3
f <- polyinterp(x, y)


[Package cmna version 1.0.5 Index]