📄 timeup.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -