?? ukf_bsffun.m
字號(hào):
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.% AUTHORS : Nando de Freitas (jfgf@cs.berkeley.edu)% Rudolph van der Merwe (rvdmerwe@ece.ogi.edu)% DATE : 10 March 2000if nargin < 3, error('Not enough input arguments.'); endy = bsffun(x,t) + n;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -