R/ReturnReceiverIndex.R

ReturnReceiverIndex <-
function(sReceiver, iArraySize, CoordArray)
{
  iResult <- -1
  for (i in 1:iArraySize)
    if (sReceiver == CoordArray[i,1])
      iResult <- i
  
  iResult
}

Try the VTrack package in your browser

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

VTrack documentation built on May 2, 2019, 9:16 a.m.