non linear differential equation

조회 수: 3 (최근 30일)
mohan
mohan 2012년 11월 30일
please help me how to solve
dq/dt + q = a1 + b1*u(t) + 1/u(t)^2

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 30일
편집: Azzi Abdelmalek 2012년 11월 30일
function dq=myeq(t,q,t1,u1,a1,b1)
u=interp1(t1,u1,t)
dq=-q+a1+b1+1/u^2;
%Then call myeq
a1=1;
b1=2;
q0=0;
t1=1:0.1:10; % vector time
u1=t1.^2 % your vector u
[t q]=ode45(@(t,q) myeq(t,q,t1,u1,a1,b1),t1,q0)
plot(t,q)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by