Just for clarification below is the question again (d^2 y)/(dx^2 )+4dy/dx+3y=0 subject to initial condition where dy/dx=4 and y=4. Can you help me explain how this can be solved?
5 次查看(过去 30 天)
显示 更早的评论
Just for clarification below is the question again
(d^2 y)/(dx^2 )+4dy/dx+3y=0 subject to initial condition where dy/dx=4 and y=4.
Can you help me explain how this can be solved?
4 个评论
Walter Roberson
2016-11-5
编辑:Walter Roberson
2016-11-5
Joshua Amuga comments to KSSV:
IVP :=ode({y''(x)+4*y'(x)+3*y,y(0)=3,y'(0)=4},y(x));
Undefined function or variable 'IVP'.
Walter Roberson
2016-11-5
Joshua Amuga: you have attempted to use MuPAD syntax in MATLAB. You need to command
nb
and then use the command in the MuPAD notebook that opens.
采纳的回答
Walter Roberson
2016-11-2
dsolve() or one of the ode* routines.
2 个评论
Walter Roberson
2016-11-5
You are attempting to use MuPAD syntax in MATLAB. The solution you posted of
dsolve('D2y-4*Dy+3*y','y(0)=3','Dy(0)=4')
appears to me to be valid.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with MuPAD 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!