帮忙调试Matlab程序
帮忙调试Matlab程序
日期:2010-02-06 16:25:51 人气:1
!!!fun1必须是列函数。
??????????????????
function practice
[t,x]=ode45(@fun1,[0,20],[100,40,6]);
subplot(1,2,1);
plot(t,x(:,1),'-',t,x(:,2),'-.',t,x(:,3),':')
legend('x1(t)','x2(t)','x3(t)')
grid
subplot(1