相关代码 |
|
a=load('Actout.txt'); b=a(:,1); c=load('Yanout.txt'); d=c(:,1); f=load('err.txt'); g=f(:,1); e=b-d; ae=(b-d)./c; x=0:199; t=0:38039; subplot(3,1,1) plot(x,b,'r',x,d,'b') grid on legend('预测输出','校验输出') xlabel('变量x'),ylabel('函数值') title('实际输出&&测试输出') subplot(3,1,2) plot(x,e,'r',x,ae,'b') grid on legend('绝对误差','相对误差') xlabel('变量x'),ylabel('误差') title('绝对误差&&相对误差') subplot(3,1,3) plot(t,g,'b') grid on axis([0,5000,-1,1.5]) xlabel('训练次数'),ylabel('误差') title('误差收敛曲线')
相关资源 |
|