I am working on Feedforward, Elman, and layer recurrent networks respectively.
For instance, in the case of FEEDFORWARD NETWORK,
This code as given in MATLAB worked fine:
[x,t] = simplefit_dataset;
net = feedforwardnet(10);
net = train(net,x,t);
view(net)
y = net(x);
perf = perform(net,y,t)
Thus, the network is trained and ready to be used for prediction.
My Question:
How can I use the trained network to predict the OUTPUT of say new INPUT (0.0118).
Thank you.