R/compute.cumulative.multiple.R

"compute.cumulative.multiple" <-
function(sim.matrix) {
  list.F <- list();
  n <- nrow(sim.matrix);
	for (i in 1:n) 
	  list.F[[i]] <- stats::ecdf(sim.matrix[i,]);
	return(list.F);
}

Try the mosclust package in your browser

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

mosclust documentation built on June 8, 2025, 11:23 a.m.