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

行业发展研究

开发平台:

Matlab

  1. function [y] = ukf_bshfun(x,u,n,t);
  2. % PURPOSE : Measurement model function for UKF
  3. % INPUTS  : - x:  The evaluation point in the domain.
  4. %         : - u:  exogenous inputs
  5. %         : - n:  measurement noise
  6. %         : - t: time index
  7. % OUTPUTS : - y:  The observed value of the function at x.
  8. % AUTHORS  : Nando de Freitas      (jfgf@cs.berkeley.edu)
  9. %            Rudolph van der Merwe (rvdmerwe@ece.ogi.edu)
  10. % DATE     : 10 March 2000
  11. if nargin < 4, error('Not enough input arguments.'); end
  12. y = bshfun(x,u,t) + n;