why am I getting this error ? "Index exceeds array bounds."
Show older comments
h=1; c=0.1; k=0.1; m=1;
y(1)=0; z(1)=0; t(1)=0;
g=@(t,y,z) 1-(c*z)-(k*y);
f=@(t,y,z) (m*z);
for i=1:10
t(i+1)=t(i)+h;
k1=f(t(i),y(i),z(i));
l1=g(t(i),y(i),z(i));
k2=f(t(i)+(h*0.5),y(i)+(k1*0.5*h),z(i)+(l1*0.5*h));
l2=g(t(i)+(h*0.5),y(i)+(k1*0.5*h),z(i)+(l1*0.5*h));
k3=f(t(i)+(h*0.5),y(i)+(k2*0.5*h),z(i)+(l2*0.5*h));
l3=g(t(i)+(h*0.5),y(i)+(k2*0.5*h),z(i)+(l2*0.5*h));
k4=f(t(i)+h,y(i)+(k3*h),z(i)+(l3*h));
y(i+1)=y(i)+(k1+2*k2+2*k3+k4)*h/6;
end
plot(t,y)
Accepted Answer
More Answers (0)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!