R/chain.dim.R

Defines functions `chain.dim`

`chain.dim` <-
function(filename) {
  con <- file(filename,open="rb")
  ## Read the dimensions of the array
  dm <- readBin(con,"integer",3)
  close(con)
  dm
}

Try the tripEstimation package in your browser

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

tripEstimation documentation built on May 2, 2019, 4:59 p.m.