注册 登录
编程论坛 Matlab

plot问题

张泽 发布于 2008-04-11 09:25, 826 次点击
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=newff([0 10],[5 1],{'tansig' 'purelin'},'traingd','learngd','msereg');
net.trainParam.epochs=200;
net=train(net,P,T);
figure;
Y=sim(net,p);
plot(P,T,P,Y,'o')

??? Error using ==> plot
Vectors must be the same lengths.

Error in ==> Untitled at 8
plot(P,T,P,Y,'o')
3 回复
#2
张泽2008-04-11 09:28
不知能否改变plot坐标使之T Y输出都可以
#3
张泽2008-04-11 09:34
又一次验证,发现将sim(net,P)直接代入plot中可以!
怪事!
来个明白人指点一下!
#4
张泽2008-04-11 10:07
郁闷!原来是p的问题!
1