How to solve a double complex ode using ode45 in MATLAB
이전 댓글 표시
The odes are:
ode(1) = diff(x,t) == (sqrt(1+x^2)*y)/(x*(t^2));
ode(2) = diff(y,t) == (x^3)*(t^2);
given x(0)=infty; y(0)=0.
I want to draw two picture to reflect x^3(u)-y relation and the u axis should be drawn by log(u) scale.
채택된 답변
추가 답변 (1개)
Cris LaPierre
2021년 10월 16일
0 개 추천
You can solve a symbolic ODE with initial/boundary conditions using dsolve
카테고리
도움말 센터 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!













