필터 지우기
필터 지우기

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?

조회 수: 2 (최근 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
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
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
Walter Roberson 2016년 11월 2일
dsolve() or one of the ode* routines.
  댓글 수: 2
Joshua Amuga
Joshua Amuga 2016년 11월 2일
편집: Walter Roberson 2016년 11월 5일
ode({y''(x)+4*y'(x)+3*y,y(0)=3,y'(0)=4},y(x));
i keep getting an error. Can you help me write the code
Walter Roberson
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 CenterFile Exchange에서 Get Started with MuPAD에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by