📄 strangsample.m
字号:
clc
p=[ 0 -0.5 0.5 1.2 20;
0 -1.5 0.6 1.1 90];
t=[ 0 0 1 0 1];
net=newp(minmax(p),1);
net.trainparam.epochs=200;%This will draw a figure:Traning with TRAINC
net=train(net,p,t);
figure;
plotpv(p,t);
plotpc(net.iw{1},net.b{1});
figure;
plotpv(p,t);
plotpc(net.iw{1},net.b{1});
axis([-2 2 -2 2]);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -