matlab中 神经网络,Matlab中各种神经网络的使用示例
title('网络的预测误差')plot(sc,perf,'g:*');hold on;figure(2);title('网络的逼近误差')plot(sc,perfp,'r:*');end%通用感应器神经网络P=[-0.5 -0.5 0.3 -0.1 -40;-0.5 0.5 -0.5 1 50];%输入向量T=[1 1 0 0 1];%期望输出plotpv(P,T);%描绘输入点图像net=ne...