R/cdf_empirical_dist.R

Defines functions cdf_empirical_dist

cdf_empirical_dist <-
function(X, gridx)
{
  m = length(gridx)
  F <- numeric(length = m)
  for (i in 1:m)
  {
      F[i] = empirical_dist(X, gridx[i])
  }
  res <- F
  return(res)
}

Try the GsymPoint package in your browser

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

GsymPoint documentation built on Nov. 2, 2023, 5:59 p.m.