kron                 package:assist                 R Documentation

_C_a_l_c_u_l_a_t_e _r_e_p_r_o_d_u_c_i_n_g _k_e_r_n_e_l_s _f_o_r _o_n_e-_d_i_m_e_n_s_i_o_n_a_l _s_p_a_c_e

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

     Return a matrix evaluating reproducing kernels for the
     one-dimensional space usually spanned by a vector

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

      kron(x,y=x)

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

       x: 

       y: 

     {a vector/list ofnumerical values. Default is x.}

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

     a matrix with the numbers of row and column equal to the length of
     x and y respectively.  The [i, j] element is the reproducing
     kernel evaluated at the ith element of x and jth element of y.

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

     Chunlei Ke chunlei_ke@pstat.ucsb.edu and Yuedong Wang
     yuedong@pstat.ucsb.edu

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

     'kronecker','ssr'

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

     x<-runif(10)
     kron(x)

