R/fun.which.zero.R

"fun.which.zero" <-
function(data)
{
data.m<-cbind(1:length(data), data)
result <- data.m[data.m[, 2] == 0, 1]
return(result)
}

Try the GLDEX package in your browser

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

GLDEX documentation built on Aug. 21, 2023, 9:08 a.m.