predictmlp.m
来自「非常不错的非线性非高斯环境下的粒子滤波程序进化算法」· M 代码 · 共 14 行
M
14 行
function xu = predictmlp(x,Q);% PURPOSE : Performs the prediction step of the hybrid SIR% algorithm.% INPUTS : - x = The current network weights samples.% - Q = Process noise variance parameter.% OUTPUTS : - xu = Predicted network weights samples.% AUTHOR : Nando de Freitas - Thanks for the acknowledgement :-)% DATE : 08-09-98if nargin < 2, error('Not enough input arguments.'); endxu = x + sqrt(Q)*randn(size(x));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?