powered by
This function evaluates a kernel of order 6.
kernel6(x)
A vector of the same length as x where each entry is ( 105/256 ) * ( 1 - x^2 ) * ( 5 - 30 * x^2 + 33 * x^4 ) if abs(x) < 1 and 0 otherwise.
x
( 105/256 ) * ( 1 - x^2 ) * ( 5 - 30 * x^2 + 33 * x^4 )
abs(x) < 1
A vector of real numbers.
Alejandra Martinez, ale_m_martinez@hotmail.com, Matias Salibian-Barrera
This function evaluates a kernel of order 6. A kernel L is a kernel of order 6 if it integrates 1, the integrals of u^j L(u) are 0 for 1 <= j < 6 (j integer) and the integral of u^6 L(u) is different from 0.
x <- seq(-2,2,length=10) kernel6(x)
Run the code above in your browser using DataLab