KalmanFilter
particle
examples
linear2.m
Go to the documentation of this file.
1
clear all;
2
addpath(
'..'
);
3
addpath(
'../../discrete_discrete'
);
4
addpath(
'../../discrete_discrete/examples'
);
5
6
linear;
7
close all;
8
9
particle_count = 30000;
10
particle = mvnrnd(x_0,P_0,particle_count)
';
11
[estimates_particle, covariances_particle] = particle_filter(func,jacobian_func,dt,t_start,state_count,sensor_count,...
12
outputs,particle_count,particle,C,chol(Q_d)'
,chol(R_d)
',chol(P_0)'
,x_0, measurements);
13
covariances_particle{end}
Generated on Tue Jan 28 2020 00:52:26 for KalmanFilter by
1.8.13