kron {assist} | R Documentation |
Return a matrix evaluating reproducing kernels for the one-dimensional space usually spanned by a vector
kron(x,y=x)
x |
a vector or a list of numerical values which spans the one-dimensional space. |
y |
a vector or a list of numerical values. Default is x. |
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.
Chunlei Ke chunlei\_ke@pstat.ucsb.edu and Yuedong Wang yuedong@pstat.ucsb.edu
## Not run: x<-runif(10) kron(x) ## End(Not run)