how to slove following ode in matlab?
조회 수: 3 (최근 30일)
이전 댓글 표시
can anybody solve this equations in matlab every thing is given just tell me how to slove in matlab댓글 수: 5
Walter Roberson
2020년 10월 26일
No. I cannot read the expressions clearly, and I do not have enough information about what the symbols represent.
I also do not know if you have access to the Symbolic Toolbox.
I pointed you to a specific example of using the Symbolic Toolbox to convert multivariate systems of differential equations into an anonymous function handle that can be used by ode45() . You should be able to proceed from there, with just the additional hint:
syms f(x) y
Dx = diff(f, x);
eqn = Dx == x^2 + y
condition = Dx(0) == 1 %f'(0) = 1 boundary condition
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!