How to input 2 dimensional x and y in newrbe?

1 visualización (últimos 30 días)
ashley tan
ashley tan el 26 de Jul. de 2018
Respondida: Krishna el 2 de Jul. de 2022
I want to input x axis and y axis to newrbe to predict value of z. It is using [x,y]=meshgrid?

Respuestas (1)

Krishna
Krishna el 2 de Jul. de 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!

Translated by