timeup.m

来自「Kalman Filtering Theory and Practice, Us」· M 代码 · 共 16 行

M
16
字号
function [x,P] = timeup(x,P,Phi,Q)
%
% function [x,P] = timeup(x,P,Phi,Q)
%
% Performs the Kalman filter time update of state vector, x
% and the associated covariance matrix of estimation uncertainty, P
%
% Input  x   is n-dimensional column vector
%        P   is n-by-n symmetric pos. def. matrix
%        Phi is n-by-n state transition matrix
%        Q   is n-by-n covariance matrix of additive state noise
% Output x and P updated for time passing
%
x = Phi*x;
P = Phi*P*Phi' + Q;

⌨️ 快捷键说明

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