MORE HELPFUL THAN CODE IN HELP/DOC/TYPE NEWFF?

5 次查看(过去 30 天)
% So many users are using NEWFF that I felt the following
% would be useful (especially since it is also relevant
% for FITNET !)
close all, clear all, clc
[x,t ] = simplefit_dataset;
[I N ] = size(x) % [ 1 94]
[O N ] = size(t) % [ 1 94 ]
MSEref = mean(var(t',1)) % 8.3378
% Reference MSE is the result of assuming
% y = mean(t) <==> output = mean(target)
figure(1), plot(x,t)
NLE = 4 % No of local extrema
net = newff(x,t,NLE);
rng(0) % Allows duplication
[ net tr y e ]= train(net,x,t);
% y = net(x); e = t-y;
hold on, plot(x,y,'r--')
NMSE = mse(e)/ MSEref % 0.0058
Rsquare = 1 - NMSE % 0.9942
% Use training record tr to obtain
% the individual performances of the
% training, validation and test subsets
Hope this helps,
Greg

采纳的回答

Greg Heath
Greg Heath 2018-8-25
The answer is in the question!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by