📄 predictmlp.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -