Radial Basis Function (RBF) Networks are a particular type of Artificial Neural Network used for function approximation problems. In this repository implemented a simple code to show the result of RBF network.
x = -pi/2:0.01:pi/2;
xtest = -pi:0.1:pi;
MN=30;
DF=1;
net = newrb(x,y,0,1,MN,DF);
MN=10 :
MN=20 :
xtest = -2*pi:0.1:2*pi;
x = -3*pi/2:0.01:3*pi/2;