ukf_hfun.m
上传用户:hfch80
上传日期:2007-10-25
资源大小:3637k
文件大小:0k
源码类别:

行业发展研究

开发平台:

Matlab

  1. function [y] = ukf_hfun(x,u,n,t);
  2. % PURPOSE : Measurement model function fpr UKF.
  3. % INPUTS  : - x:  Hidden state
  4. %         : - u:  control vector  
  5. %           - n:  Measurement noise
  6. %           - t:  time index or itegration constant
  7. % OUTPUTS : - y:  Observation of state
  8. % AUTHORS  : 
  9. % DATE     : 
  10. if nargin < 3, error('Not enough input arguments.'); end
  11. y = hfun(x,t) + n;