?? ukf_hfun.m
字號:
function [y] = ukf_hfun(x,u,n,t);% PURPOSE : Measurement model function fpr UKF.% INPUTS : - x: Hidden state% : - u: control vector % - n: Measurement noise% - t: time index or itegration constant% OUTPUTS : - y: Observation of state% AUTHORS : % DATE : if nargin < 3, error('Not enough input arguments.'); endy = hfun(x,t) + n;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -