R/Makcv1.R

#Program menghitung nilai MLCV untuk vektor h
Makcv.1<-function (x,y,t,min,max,s)
{
  h	<- seq(min,max,s)
  mcv   <-NULL
  for (j in 1:length(h))
  {
    mcvj	<- MLCV.1(x,y,t,h[j])
    mcv	<- c(mcv,mcvj)
    cat("=")
  }
  mcv
  result=cbind(h,mcv)
  result
}

Try the Policount package in your browser

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

Policount documentation built on May 2, 2019, 6:50 p.m.