资源简介
matlab代码,描述了在一维信号前提下,对粒子滤波器和卡尔曼滤波的跟踪效果做比较

代码片段和文件信息
function ParticleEx1
% Particle filter example adapted from Gordon Salmond and Smith paper.
x = 0.1; % initial state
Q = 1; % process noise covariance
R = 1; % measurement noise covariance
tf = 50; % simulation length
N = 100; % number of particles in the particle filter
xhat = x;
P = 2;
xhatPart = x;
% Initialize the particle filter.
for i = 1 : N
xpart(i) = x + sqrt(P) * randn;
end
xArr = [x];
yArr = [x^2 / 20 + sqrt(R) * randn];
xhatArr = [x];
PArr = [P];
xhatPartArr = [xhatPart];
close all;
for k = 1 : tf
% System simulation
x = 0.5 * x + 25 * x / (1 + x^2) + 8 * cos(1.2*(k-1)) + sqrt(Q) * randn;%状态方程
y = x^2 / 20 + sqrt(R) * randn;%观测方程
% Extended Kalman filter
F = 0.5 + 25 * (1 - xhat^2) / (1 + xhat^2)^2;
P = F * P * F‘ + Q;
H = xhat / 10;
K = P * H‘ * (H * P * H‘ + R)^(-1);
xhat = 0.5 * xhat + 25 * xhat / (1 + xhat^2) + 8 * cos(1.2*(k-1));%预测
xhat = xhat + K * (y - xhat^2 / 20);%更新
P = (1 - K * H) * P;
% Particle filter
for i = 1 : N
xpartminus(i) = 0.5 * xpart(i) + 25 * xpart(i) / (1 + xpart(i)^2) + 8 * cos(1.2*(k-1)) + sqrt(Q) * randn;
ypart = xpartminus(i)^2 / 20;
vhat = y - ypart;%观测和预测的差
q(i) = (1 / sqrt(R) / sqrt(2*pi)) * exp(-vhat^2 / 2 / R);
end
% Normalize the likelihood of each a priori estimate.
qsum = sum(q);
for i = 1 : N
q(i) = q(i) / qsum;%归一化权重
end
% Resample.
for i = 1 : N
u = rand; % uniform random number between 0 and 1
qtempsum = 0;
for j = 1 : N
qtempsum = qtempsum + q(j);
if qtempsum >= u
xpart(i) = xpartminus(j);
break;
end
end
end
% The particle filter estimate is the mean of the particles.
xhatPart = mean(xpart);
% Plot the estimated pdf‘s at a specific time.
if k == 20
% Particle filter pdf
pdf = zeros(811);
for m = -40 : 40
for i = 1 : N
if (m <= xpart(i)) && (xpart(i) < m+1)
pdf(m+41) = pdf(m+41) + 1;
end
end
end
figure;
m = -40 : 40;
plot(m pdf / N ‘r‘);
hold;
title(‘Estimated pdf at k=20‘);
disp([‘min max xpart(i) at k = 20: ‘ num2str(min(xpart)) ‘ ‘ num2str(max(xpart))]);
% Kalman filter pdf
pdf = (1 / sqrt(P) / sqrt(2*pi)) .* exp(-(m - xhat).^2 / 2 / P);
plot(m pdf ‘b‘);
legend(‘Particle filter‘ ‘Kalman filter‘);
end
% Save data in arrays for later plotting
xArr = [xArr x];
yArr = [yArr y];
xhatArr = [xhatArr xhat];
PArr = [PArr P];
xhatPartArr = [xhatPartArr xhatPart];
end
t = 0 : tf;
%figure;
%plot(t xArr);
%ylabel(‘true state‘);
figure;
plot(t xArr ‘b.‘ t xhatArr ‘k-‘);
axis([0 tf -40 40]);
set(gca‘FontSize‘12); set(gc
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 183 2009-02-02 09:47 Particle Filter VS Kalman Filter\Matlab中文论坛--助努力的人完成毕业设计.url
文件 3543 2009-02-01 16:19 Particle Filter VS Kalman Filter\使用帮助:新手必看.htm
文件 28672 2008-07-04 10:52 Particle Filter VS Kalman Filter\粒子滤波 目标跟踪 一维情况下 非线性非高斯\Doc1.doc
文件 3573 2013-04-02 10:57 Particle Filter VS Kalman Filter\粒子滤波 目标跟踪 一维情况下 非线性非高斯\ParticleEx1.asv
文件 3549 2013-04-02 11:00 Particle Filter VS Kalman Filter\粒子滤波 目标跟踪 一维情况下 非线性非高斯\ParticleEx1.m
文件 158 2009-05-24 09:58 Particle Filter VS Kalman Filter\说明.txt
目录 0 2013-04-02 10:57 Particle Filter VS Kalman Filter\粒子滤波 目标跟踪 一维情况下 非线性非高斯
目录 0 2013-04-01 14:51 Particle Filter VS Kalman Filter
----------- --------- ---------- ----- ----
39678 8
相关资源
- KF+EKF matlab程序实现
- 卡尔曼滤波MATLAB代码170027
- 基于卡尔曼滤波的三种经典室内定位
- 基于卡尔曼滤波的PID控制
- MATLAB在卡尔曼滤波器中应用的理论与
- 卡尔曼滤波基础及matlab仿真程序-王可
- matlab实现的人体跟踪kalman滤波
- 卡尔曼滤波(卡尔曼滤波理论与实践
- 集合卡尔曼滤波算法-数据同化的经典
- 基于卡尔曼滤波的目标跟踪算法-官方
- Kalman Filtering - Theory and Practice Using M
- 改进的自适应卡尔曼滤波算法
- 卡尔曼滤波理论与实践MATLAB版第四版
- 卡尔曼滤波原理及应用 MATLAB仿真pd
- 卡尔曼滤波原理及应用-黄小平pdf版
- 《卡尔曼滤波原理及应用MATLAB仿真》
- 卡尔曼滤波及原理黄小平随书程序
- 基于扩展卡尔曼滤波相关期刊和毕业
- 卡尔曼滤波原理及应用 matlab仿真
- 卫星定位-卡尔曼滤波-MATLAB程序
- 卡尔曼滤波原理及应用-MATLAB仿真随书
- 卡尔曼滤波原理及matlab仿真含程序
- 卡尔曼滤波原理及应用 MATLAB仿真pd
- 《卡尔曼滤波原理及应用-MATLAB仿真》
- 卡尔曼滤波原理及应用-黄小平pdf版
- 13811540_卡尔曼滤波原理及应用MATLAB仿
- 卡尔曼滤波器的原理以及在matlab中的
- 卡尔曼滤波原理及应用:MATLAB仿真.
- 捷联惯导算法与卡尔曼滤波原理讲义
- 《卡尔曼滤波原理及应用MATLAB仿真》
评论
共有 条评论