How to input 2 dimensional x and y in newrbe?
3 views (last 30 days)
Show older comments
I want to input x axis and y axis to newrbe to predict value of z. It is using [x,y]=meshgrid?
0 Comments
Answers (1)
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
0 Comments
See Also
Categories
Find more on Define Shallow Neural Network Architectures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!