R/livingVector.R

Defines functions livingVector

Documented in livingVector

livingVector <- function(limfile)
{
  veclen <-  limfile$NComponents
  livingVec <- vector(mode = "logical", length = veclen)
  NLNodeNodes <- as.vector( grep("NLNODE", limfile$Components[,1]))
  for (Count in 1:veclen)
  {
    livingVec[Count] <-  TRUE
  }

  for (trueCount in (NLNodeNodes))
  {
    livingVec[trueCount] <-  FALSE
  }
  message("Living vector list created")

  return(livingVec)
}

Try the FlowCAr package in your browser

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

FlowCAr documentation built on Sept. 30, 2019, 5:04 p.m.