-
Notifications
You must be signed in to change notification settings - Fork 3
/
sim_parameters.m
32 lines (26 loc) · 1.28 KB
/
sim_parameters.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Simulation Parameters %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% * Description: %
% - Set desired simulation parameters. %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Simulation example
example = 1;
% Time horizon
N = 100;
% Number of experiments
T = 10;
% Choose which filters to simulate
% Available filters:
% KF - Kalman Filter
% RKF - Robust Kalman Filter
% ORF - Optimal Robust Filter (Ishihara, 2015)
% BDU - Bounded Data Uncertainty Filter (Sayed, 2001)
% GCF - Guaranteed Cost Filter (Dong, 2006)
% LMI_RKF - LMI-Based Robust Kalman Filter (Abolhasani, 2018)
% RSKF - Risk-Sensitive Kalman Filter (Zorzi, 2017)
sim_filters = ["KF","RKF","ORF","BDU","GCF","LMI_RKF","RSKF"];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%