Merge branch 'fixf'
[wrf-fire-matlab.git] / detection / p_map.m
blob6909ed0d2c99109062c41714d8ab8a00ab1283ad
1 function p=p_map(T,tign)
2 % likelihood of detection before cutoff from time of ignition
3 % usage: p=rad_map(T,time of ignition - time of detection)
4 % T = time constant (in seconds) for the likelihood decay
5 p = exp(tign./T);
6 p(tign>0)=0;
7 end