kf_update.m

来自「This a collection of MATLAB functions fo」· M 代码 · 共 10 行

M
10
字号
function [x,P]= KF_update(x,P,v,R,H)
%function [x,P] = KF_update(x,P,v,R,H)
%
% Calculate the Kalman filter update given the prior state [x,P], the innovation v, the 
% observe uncertainty R, and the linear observation model H. 
%
% Tim Bailey 2005.

[x,P]= KF_update_cholesky(x,P,v,R,H);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?