Plot function fit
plotfit(net,inputs,targets)
plotfit(targets1,inputs1,'name1',...)
plotfit(net,inputs,targets)
plots the output function of a network
across the range of the inputs inputs
and also plots target
targets
and output data points associated with values in
inputs
. Error bars show the difference between outputs and
targets
.
The plot appears only for networks with one input.
Only the first output/targets appear if the network has more than one output.
plotfit(targets1,inputs1,'name1',...)
displays a series of
plots.
This example shows how to use a feed-forward network to solve a simple fitting problem.
[x,t] = simplefit_dataset; net = feedforwardnet(10); net = train(net,x,t); plotfit(net,x,t)