curvPol {MonoPoly} | R Documentation |
Evaluating the Curvature of Polynomials
Description
Function to evaluate the curvature of polynomials
Usage
curvPol(x, beta)
Arguments
x |
numerical values at which to evaluate the curvature of polynomials, can be provided in a vector, matrix, array or data frame |
beta |
numerical vector containing the coefficient of the polynomial |
Value
The result of evaluating the curvature of the polynomial at the values
in x
,
returned in the same dimension as x
has.
Author(s)
Berwin A Turlach <Berwin.Turlach@gmail.com>
Examples
beta <- c(1,2,1)
x <- 0:10
curvPol(x, beta)
str(curvPol(x, beta))
x <- cbind(0:10, 10:0)
curvPol(x, beta)
str(curvPol(x, beta))
x <- data.frame(x=0:10, y=10:0)
curvPol(x, beta)
str(curvPol(x, beta))
[Package MonoPoly version 0.3-10 Index]