Skip to content
Snippets Groups Projects
Commit 87cb224e authored by Laurie Boffelli's avatar Laurie Boffelli
Browse files

Correction Dynamics_Model (bug: croix restaient sur A dans la version sans spread)

parent 6fb38906
No related branches found
No related tags found
No related merge requests found
......@@ -362,6 +362,9 @@ classdef Dynamics_Model < matlab.mixin.Copyable %handle
loglikelihood = -100;
else
loglikelihood = log(normpdf(difference,0,sigma));
index2 = loglikelihood == -Inf;%a été supprimé
loglikelihood(index2) = -100;%a été supprimé
end
end
function list_frames = get_converged_frames(obj)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment