11.1 Matlab 的入门1——如何运行M文件

1. 两个数组建立关系,画出图像

代码:

clear all;
P=[0 1 2 3 4 5 6 7 8 9 10];
T=[0 1 2 3 4 3 2 1 2 3 4];
net=newcf1(P,T,5);
net.trainParam.epochs=50;
net.train(net,P,T);
Y=sim(net,P);
plot(P,T,P,Y,'o')


文件命名为:   newcf.m   与函数名newcf1 有意的区分;


2.Matlab 运行后打开newcf.m 文件

绿色三角形按钮运行

 11.1 Matlab 的入门1——如何运行M文件_第1张图片


11.1 Matlab 的入门1——如何运行M文件_第2张图片



教程在线网址:

http://emuch.net/html/201408/7816517.html


你可能感兴趣的:(11.Matlab7.0)