R/IkRS.r

Defines functions IkRS

Documented in IkRS

#' @export

IkRS <- function(N){
sam <- matrix(0, ncol=N, nrow=1)
for(k in 1:N){
sam<-rbind(sam, Ik(N,k))
}
sam
}

Try the TeachingSampling package in your browser

Any scripts or data that you put into this service are public.

TeachingSampling documentation built on April 22, 2020, 1:05 a.m.