Second Order Differential Equation
显示 更早的评论
y''+3y'-6=0
y(0)=2
y'(0)=3
I have to solve this equation.
Just got an exam today from it and I couldn't solve it, so I failed it.
I have to build the algorithm to get it, but because I'm new to it so I don't know to do this.
->>> Did something really wrong that I didn't get any resoult.
And if you could show me more examples of this types of equations and how I cand solve them, it would be great. I can't really get them.
Thank you very much for your help!
function dy=test(t,y)
dy=zeros(2,1);
dy(1)=y(2);
dy(2)=y(1)+3.*y(2)-6;
end
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!