summaryrefslogtreecommitdiffstats
path: root/R Scripts/temporal.R
blob: 3502b45f22b1508c74696a3669fc1a326c7829cc (plain)
1
2
3
4
5
6
7
8
9
temporal = function(tu,tv,beta){
  dt = tv - tu
  if (sum(dt<0)==0) {
    return (beta*exp(-beta*dt))
  } else {
    return (NA)
  }
}