How to input 2 dimensional x and y in newrbe?

3 views (last 30 days)
ashley tan
ashley tan on 26 Jul 2018
Answered: Krishna on 2 Jul 2022
I want to input x axis and y axis to newrbe to predict value of z. It is using [x,y]=meshgrid?

Answers (1)

Krishna
Krishna on 2 Jul 2022
Hey Ashley,
Look at this Example
Here you design a radial basis network given inputs P and targets T.
P = [1 2 3];
T = [2.0 4.1 5.9];
net = newrbe(P,T);
The network is simulated for a new input.
P = 1.5;
Y = sim(net,P)
Also look at the documentation of newrbe for more information
Also follow this link

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!