文件名称:ekf2
介绍说明--下载内容来自于网络,使用问题请自行百度
一种快速Kalman滤波算法实现,。对于某些不能够采取离线计算的滤波过程来说,它可以在保证一定精度的同时极大地提高计算速度和减少计算占用资源- EKF Extended Kalman Filter for nonlinear dynamic systems
[x, P] = ekf(f,x,P,h,z,Q,R) returns state estimate, x and state covariance, P
for nonlinear dynamic system:
x_k+1 = f(x_k)+ w_k
z_k = h(x_k)+ v_k
where w ~ N(0,Q) meaning w is gaussian noise with covariance Q
v ~ N(0,R) meaning v is gaussian noise with covariance R
Inputs: f: function handle for f(x)
x: a priori state estimate
P: a priori estimated state covariance
h: fanction handle for h(x)
z: current measurement
Q: process noise covariance
R: measurement noise covariance
Output: x: a posteriori state estimate
P: a posteriori state covariance
Example:
[x, P] = ekf(f,x,P,h,z,Q,R) returns state estimate, x and state covariance, P
for nonlinear dynamic system:
x_k+1 = f(x_k)+ w_k
z_k = h(x_k)+ v_k
where w ~ N(0,Q) meaning w is gaussian noise with covariance Q
v ~ N(0,R) meaning v is gaussian noise with covariance R
Inputs: f: function handle for f(x)
x: a priori state estimate
P: a priori estimated state covariance
h: fanction handle for h(x)
z: current measurement
Q: process noise covariance
R: measurement noise covariance
Output: x: a posteriori state estimate
P: a posteriori state covariance
Example:
(系统自动生成,下载前可以参看下载内容)
下载文件列表
ekf2/ekf/ekf.m
ekf2/ekf.m
ekf2/ekf
ekf2
ekf2/ekf.m
ekf2/ekf
ekf2
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.