Solution of nonlinear ordinary differential equation of second order
조회 수: 3 (최근 30일)
이전 댓글 표시
Can anyone let me hownto solve nonlinear ordinary differential equation mathematically, numerically and graphically using matlab. The differential equation is: y" = A (x^4) and y(0) = y(1) = 1
댓글 수: 1
Dyuman Joshi
2023년 11월 6일
Do you mind showing how to solve a Differential equation graphically?
Also, did you search on this forum or on the internet for similar questions asked before?
답변 (2개)
Bhumi Desai
2023년 11월 10일
A = 1; % Assumed
syms y(x)
Dy = diff(y);
ode = diff(y,x, 2) == A*(x^4);
cond1 = y(0) == 1;
cond2 = y(1) == 1;
conds = [cond1 cond2];
ySol(x) = dsolve(ode,conds);
ySol = simplify(ySol)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!