代码搜索:RBF
找到约 2,329 项符合「RBF」的源代码
代码结果 2,329
www.eeworm.com/read/181389/9256474
m rbf.m
function ker = rbf(arg)
% RBF
%
% Construct a Gaussian radial basis function (RBF) kernel object,
%
% K(x1, x2) = exp(-gamma.*sum((x1 - x2).^2))
%
% Examples:
%
% % default constructo
www.eeworm.com/read/181388/9256617
m rbf.m
function ker = rbf(arg)
% RBF
%
% Construct a Gaussian radial basis function (RBF) kernel object,
%
% K(x1, x2) = exp(-gamma.*sum((x1 - x2).^2))
%
% Examples:
%
% % default constructo
www.eeworm.com/read/177674/9442629
m rbf.m
function net = rbf(nin, nhidden, nout, rbfunc, outfunc, prior, beta)
%RBF Creates an RBF network with specified architecture
%
% Description
% NET = RBF(NIN, NHIDDEN, NOUT, RBFUNC) constructs and init
www.eeworm.com/read/176823/9483318
m rbf.m
function net = rbf(nin, nhidden, nout, rbfunc, outfunc, prior, beta)
%RBF Creates an RBF network with specified architecture
%
% Description
% NET = RBF(NIN, NHIDDEN, NOUT, RBFUNC) constructs and init
www.eeworm.com/read/176709/9487434
m rbf.m
function y = rbf (rr) % standard rbfs
global RBFscale;
global RBFpar;
global RBFtype; % 1=MQ, 2=G, 3=IMQ, 4=W2, 5=TPS, 6=W4
r=rr/RBFscale;
if RBFtype==1
y=-(1+r.*r).^(1/2);
www.eeworm.com/read/170250/9813333
p rbf.p
www.eeworm.com/read/364022/9925506
m rbf.m
clear all;
close all;
xite=0.25;
alfa=0.05;
belte=0.01;
x=[0,0,0]';
ci=30*ones(3,6);
bi=40*ones(6,1);
w=10*ones(6,1);
h=[0,0,0,0,0,0]';
ci_1=ci;ci_3=ci_1;ci_2=ci_1;
bi_1=bi;bi_2=bi
www.eeworm.com/read/168045/9941054
m rbf.m
function w = rbf(x, t, d, sigma, lam)
% function w = rbf(x,t,d,sigma,lam)
%
% Determines weights for a regularized radial basis function network.
%
% x - data
% t - centers
% d - de
www.eeworm.com/read/358159/10195340