kernapply               package:stats               R Documentation

_A_p_p_l_y _S_m_o_o_t_h_i_n_g _K_e_r_n_e_l

_D_e_s_c_r_i_p_t_i_o_n:

     'kernapply' computes the convolution between an input sequence 
     and a specific kernel.

_U_s_a_g_e:

     kernapply(x, ...)

     ## Default S3 method:
     kernapply(x, k, circular = FALSE, ...)
     ## S3 method for class 'ts':
     kernapply(x, k, circular = FALSE, ...)
     ## S3 method for class 'vector':
     kernapply(x, k, circular = FALSE, ...)

     ## S3 method for class 'tskernel':
     kernapply(x, k, ...)

_A_r_g_u_m_e_n_t_s:

       x: an input vector, matrix, time series or kernel to be
          smoothed.

       k: smoothing '"tskernel"' object.

circular: a logical indicating whether the input sequence to be
          smoothed is treated as circular, i.e., periodic.

     ...: arguments passed to or from other methods.

_V_a_l_u_e:

     A smoothed version of the input sequence.

_A_u_t_h_o_r(_s):

     A. Trapletti

_S_e_e _A_l_s_o:

     'kernel', 'convolve', 'filter', 'spectrum'

_E_x_a_m_p_l_e_s:

     ## see 'kernel' for examples

