Merge branch 'fixf'
[wrf-fire-matlab.git] / detect_ignition / new_likelihood / make_detection_probabilities.m
blob27ec2d2348e74f7400890b0ac3c53e53464e8d36
1 function [ detection_probs ] = make_detection_probabilities( heat_matrix )\r
2 % [ detection_probs ] = make_detection_probabilities( heat_matrix )\r
3 % Function returns a matrix with probaility of satellite detections at each\r
4 % pixel\r
5 %\r
6 %Inputs: Heat_matrix - matrix containing heat fluxes at each pixel\r
7 %Output: detection_probs - matrix with proability of satellite detection at\r
8 %each pixel\r
9 \r
10 [m,n] = size(heat_matrix);\r
11 detection_probs = zeros(m,n);\r
13 for i = 1:m\r
14     for j = 1:n\r
15         dp =  detection_probability(heat_matrix(i,j));\r
16         detection_probs(i,j) = dp;\r
17     end\r
18 end\r
21 end\r