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
}
Trackage/tripEstimation documentation built on April 24, 2023, 6:57 p.m.