linfun: Linear interpolation function.

View source: R/functions.R

linfunR Documentation

Linear interpolation function.

Description

Return a function performing the linear interpolation.

Usage

linfun(x, y, yleft = y[1], yright = y[length(y)])

Arguments

x, y

Numeric vectors giving the coordinates of the points to be interpolated.

yleft

The value to be returned when input x values are less than min(x).

yright

The value to be returned when input x values are greater than max(x).

Details

A C++ version of this function is available. See vignette('IBMPopSim_cpp') for more details.

Value

Objet of class linfun and function which is an approxfun function with method = 'linear'.


IBMPopSim documentation built on Oct. 15, 2024, 5:07 p.m.