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