필터 지우기
필터 지우기

Differential Equation with Coefficients as Integral Functions

조회 수: 2 (최근 30일)
Saeid
Saeid 2018년 9월 7일
편집: Torsten 2018년 9월 7일
I would like to solve a differential equation e.g. in the form: y"+f(x)y'=0 where the coefficient function can only be given as an integral and not explicitly.
Can Matlab solve differential equations of this form?

채택된 답변

Torsten
Torsten 2018년 9월 7일
편집: Torsten 2018년 9월 7일
fun=@(x,y)[y(2);-y(2)*integral(@(z)z.^2+3*z-1,0,x)];
is a suitable function to be used with ODE45, and it represents your differential equation for
f(x) = integral_{z=0}^{z=x} (z^2+3z-1) dz
Best wishes
Torsten.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by