Problem with the shooting method
1 次查看(过去 30 天)
显示 更早的评论
Helloo,
Can someone help me with that code in matlab:
function main
y0=0;
y0=fsolve(@fun1,y0);
x0=[0.6,y0];
[t,x]=ode45(@fun2,[0 4], x0);
plot(t,x(:,1),t,x(:,2),'r')
function f=fun1(y)
x0=[0.6;y];
[t,x]=ode45(@fun2,[0 4],x0);
n=length(t);
f=x(n,1)+0.1;
function dx=fun2(t,x)
dx(1,1)=x(2);
dx(2,1)= -2*x(2)-2*x(1) + e^(-t) + sin(2*t);
That code must solves this task
x'' = -2x'(t) – 2x(t) + e^(-t) + sin(2t)
t ϵ [0,4]; x(0) = 0,6; x(4) = -0,1 with shooting method
but code doesnt run in matlab because of errors.
Thanks in advance.
2 个评论
Jan
2019-5-10
@Melda: A general rule in the forum: If you mention, that there is an error, post a copy of the complete error message. It is a good idea to share this important information with the readers.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!