lin.itp: Linear interpolation

Description Usage Arguments Value Examples

Description

Interpolates desired vector given density estimation.

Usage

1
lin.itp(x, X, Y)

Arguments

x

the coordinates of points where the density needs to be interpolated

X

the coordinates of the estimated densities

Y

the values of the estimated densities

Value

the interpolated densities

Examples

1
2
3
4
X <- seq(-10,10,length.out=20);
Y <- dnorm(X);
x <- seq(-10,10,length.out=100);
lin.itp(x,X,Y)

CARS documentation built on May 2, 2019, 2:57 p.m.