repo.or.cz
/
wrf-fire-matlab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge branch 'fixf'
[wrf-fire-matlab.git]
/
detection
/
p_map.m
blob
6909ed0d2c99109062c41714d8ab8a00ab1283ad
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