ode23 and ode45 problem

조회 수: 4 (최근 30일)
baran erbas
baran erbas 2019년 5월 26일
댓글: baran erbas 2019년 5월 27일
Suppose we have a differential equation dy/dx=-2x+4y^2 over the range x=0 to 1 with y(0)=0. I need to solve this question with 'ode23' and ode45 in matlab. Does anybody help me?
  댓글 수: 2
John D'Errico
John D'Errico 2019년 5월 26일
Next time, why not make an effort to do your homework yourself? Then show what you tried and ask for someone to help fix it, if you do not succeed.
baran erbas
baran erbas 2019년 5월 26일
Because i have no idea about this question if you can give me an example solution i will try to solve my question.

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

채택된 답변

Stephan
Stephan 2019년 5월 26일
% Solve symbolic (blue line in plot)
syms y(x) x
eqn = diff(y,x) == -2*x+4*y^2
sol_symbolic = dsolve(eqn,y(0)==0);
fplot(sol_symbolic,[0 1])
hold on
% solve numeric with ode45 (red dots in plot)
[V, S] = odeToVectorField(eqn);
fun = matlabFunction(V,'vars', {'x','Y'});
[x, sol_numeric] = ode45(fun,[0 1], 0);
plot(x, sol_numeric,'or')
hold off
With this example code it should be possible to use ode23 also
  댓글 수: 4
Jan
Jan 2019년 5월 27일
Almost nice.
function main
[y,x] = ode45(@H, [0,1], [0,1]);
% ^ ^ round parentheses
end
function xl = H(x,y)
xl = zeros(2,1);
xl(1) = x(2);
xl(2) = -2 * x + 4 * y^2;
end
Use @H instead of defining the function to be integrated as char 'H'. The latter is still working, but outdate for 15 years now.
baran erbas
baran erbas 2019년 5월 27일
I tried this but it gives error
Index exceeds the number of array elements (1).
Error in batu>H (line 7)
xl(1) = x(2);
Error in odearguments (line 90)
f0 = feval(ode,t0,y0,args{:}); % ODE15I sets args{1} to yp0.
Error in ode45 (line 115)
odearguments(FcnHandlesUsed, solver_name, ode, tspan, y0, options, varargin);
Error in batu (line 2)
[y,x] = ode45(@H, [0,1], [0,1]);
what is the problem???

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

추가 답변 (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