?? rbf_test.m
字號:
function y = rbf_test(w, x, t, sigma)% function y = rbf_test(w, x, t, sigma)%% Tests a regularized radial basis function network% % The input structure RBF must be of the format defined in rbf.m% Do a 'help rbf' to see the structure.%% x - test data% t - centers% w - weights%% Hugh Pasika 1998rx = size(x,1);G = rbf_mkGF(x,t);G = exp((-1/(2*sigma^2))*G.^2);G = [G ones(rx,1)];y = G*w;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -