标签: matlab ode
function ydot = eq1(t,y) ydot = cos(t);
然后将此eq1传递给ode23或ode45 ...如果输入中没有y,它就不会工作......为什么会这样? y确实出现在函数体中的任何位置。