Skip to content
Snippets Groups Projects
Commit 1c30a1e1 authored by Dóra Kocsis's avatar Dóra Kocsis
Browse files

fix bug in estimation input: lyapunov

parent 585f2461
Branches
Tags
1 merge request!16Master
...@@ -48,11 +48,11 @@ try ...@@ -48,11 +48,11 @@ try
options_.lyapunov_db = 0; options_.lyapunov_db = 0;
options_.lyapunov_srs = 0; options_.lyapunov_srs = 0;
if strcmp(value, 'fixed_point') if value == 3 % fixed_point
options_.lyapunov_fp = 1; options_.lyapunov_fp = 1;
elseif strcmp(value, 'doubling') elseif value == 4 %doubling
options_.lyapunov_db = 1; options_.lyapunov_db = 1;
elseif strcmp(value, 'square_root_solver') elseif value == 5 %square_root_solver
options_.lyapunov_srs = 1; options_.lyapunov_srs = 1;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment