Mahtab-Shabani / Neural-Network-RBF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neural-Network-RBF

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.

Input data:

x = -pi/2:0.01:pi/2;

Test data:

xtest = -pi:0.1:pi;

Training

MN=30;
DF=1;
net = newrb(x,y,0,1,MN,DF);

Results:

MN=10 :

image

MN=20 :

image

Changing data:

xtest = -2*pi:0.1:2*pi;

x = -3*pi/2:0.01:3*pi/2;

image

About

License:MIT License


Languages

Language:MATLAB 100.0%