ukf_bshfun.asv
来自「关于pf」· ASV 代码 · 共 8 行
ASV
8 行
function [y] = ukf_bshfun(x,u,n,t);% PURPOSE : Measurement model function for UKF% INPUTS : - x: The evaluation point in the domain.: - u: exogenous inputs % : - n: measurement noise% : - t: time index% OUTPUTS : - y: The observed value of the function at x.if nargin < 4, error('Not enough input arguments.'); endy = bshfun(x,u,t) + n;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?