Skip to content
Snippets Groups Projects
Commit afda93ec authored by adeline.paiement's avatar adeline.paiement
Browse files

correction bug

parent 60441b96
No related branches found
No related tags found
No related merge requests found
...@@ -392,7 +392,7 @@ classdef Dynamics_Model < matlab.mixin.Copyable %handle ...@@ -392,7 +392,7 @@ classdef Dynamics_Model < matlab.mixin.Copyable %handle
frames(indexes) frames(indexes)
terme1 = obj.logP_cond_y(obj.Y(frames(indexes),:), obj.X(frames(indexes))); terme1 = obj.logP_cond_y(obj.Y(frames(indexes),:), obj.X(frames(indexes)));
%llh_dynamics(frames <= 1) = terme1 + obj.logP_x_Markov(obj.alpha_initial, 0, 2, 1, obj.alpha_initial, obj.sigma_test); %llh_dynamics(frames <= 1) = terme1 + obj.logP_x_Markov(obj.alpha_initial, 0, 2, 1, obj.alpha_initial, obj.sigma_test);
llh_dynamics(frames <= 1) = terme1 + obj.logP_x_Markov(obj.X(1), -alpha, 2, 1, alpha, obj.sigma_test); llh_dynamics(frames <= 1) = terme1 + obj.logP_x_Markov(obj.X(1), obj.X(1)-alpha, 2, 1, alpha, obj.sigma_test);
end end
function plot_estimated_X(obj) function plot_estimated_X(obj)
if obj.display_screen ~= -1 if obj.display_screen ~= -1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment