필터 지우기
필터 지우기

how to solve attached problem using fsolve and ode45??

조회 수: 14 (최근 30일)
chirag patel
chirag patel 2020년 1월 30일
댓글: darova 2020년 1월 30일
i want to solve this in the following manner :
USING FSOLVE
1) calculate x3, x4 from given x1,x2.
2) calculate x5 from x1,x3 and x6 from x1,x3,x5
3) use ODE 45 to calculate x7 and x8 from x5 and x6
4) update x1 and x2 from x7 and x8
5) run this till we reached to desire value of x1 and x2.

답변 (1개)

darova
darova 2020년 1월 30일
You need only x7 and x8 initial
function main
[t,x] = ode45(@func,tspan,[x7 x8]);
plot(t,x)
function dx = func(~,x)
x1 = x(2)^2 + 3*x(1);
x2 = x(1) - x(2);
% x3 .. x6
dx(1,1) = -x5;
dx(2,1) = -x6;
end
end
  댓글 수: 9
darova
darova 2020년 1월 30일
please?

댓글을 달려면 로그인하십시오.

카테고리

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