cubicspline {cmna}R Documentation

Natural cubic spline interpolation

Description

Finds a piecewise linear function that interpolates the data points

Usage

cubicspline(x, y)

Arguments

x

a vector of x values

y

a vector of y values

Details

cubicspline finds a piecewise cubic spline function that interpolates the data points. For each x-y ordered pair. The function will return a list of four vectors representing the coefficients.

Value

a list of coefficient vectors

See Also

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

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

Examples

x <- c(1, 2, 3)
y <- c(2, 3, 5)
f <- cubicspline(x, y)

x <- c(-1, 1, 0, -2)
y <- c(-2, 2, -1, -1)
f <- cubicspline(x, y)


[Package cmna version 1.0.5 Index]