Displaying 1 result from an estimated 1 matches for "02106c24".
Did you mean:
0206c54
2006 Jul 17
3
information about a function
...,1],data[,2])
and f is:
> f
function (v)
.C("R_approx", as.double(x), as.double(y), as.integer(n), xout = as.double(v),
as.integer(length(v)), as.integer(method), as.double(yleft),
as.double(yright), as.double(f), NAOK = TRUE, PACKAGE = "base")$xout
<environment: 02106C24>
I also used "locPoly".
Both yield either a function or a data frame of values.
Is there a way to get a mathematical representation of the function,
e.g. a polynomial of any order? Something like
ax^3+bx^2+cx^1+d or similar if it is of degree 3?
Basically, I want to create functio...