马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
P=[1:1:16];<BR>>> T=[12960 13039 8740 6513 3668 1750 10890 1429 6435 11448 3187 5703 2232 3135 3759 5412];<BR>>> plot(P,T,'+');<BR>>> xlabel('输入向量 P');<BR>>> ylabel('目标向量 T');<BR>>> title('训练向量');<BR>>> net=newff([1,16],[5,1],{'tansig','purelin'},'trainlm');<BR>>> net=init(net);<BR>>> net.trainparam.show=100;<BR>>> net.trainparam.epochs=20000;<BR>>> net.trainparam.goal=0.0001;<BR>net.trainparam.lr=0.01;<BR>>> net=train(net,P,T);<BR>TRAINLM, Epoch 0/20000, MSE 5.42199e+007/0.0001, Gradient 229326/1e-010<BR>TRAINLM, Epoch 4/20000, MSE 9.29022e+006/0.0001, Gradient 3.6629e-011/1e-010<BR>TRAINLM, Minimum gradient reached, performance goal was not met.<BR>哪位大虾,请帮我看下,我这个程序错在哪里,不胜感激 |