euler's method, error, when I run the code i get an error message when trying to create the array for the x values, Array indices must be positive integers or logical values.

조회 수: 1 (최근 30일)
clear
clc
close all
t0 = 0;
x0 = 3;
tf = 1;
n = 10;
tArray = linspace(t0, tf, n+1);
xArray = [x0];
h = (tf - t0)/n;
%--------------------------variables------------------------
%function for diffrential equation
f =@ (t,x) -3*t*x;
for ii = h : n
x = x0 + h * f(t0,x0);
t = (t0 + h);
x0 = x;
t0 = t;
xArray(ii+1) = x0
end
disp (xArray)
disp(tArray)

채택된 답변

Alan Stevens
Alan Stevens 2020년 9월 25일
Change
for ii = h : n
to
for ii = 1 : n

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by