How to plot an array graph from a 'for' loop?

조회 수: 14 (최근 30일)
Savely Chernyshev
Savely Chernyshev 2022년 9월 7일
댓글: Savely Chernyshev 2022년 9월 7일
I'm trying to plot an analytical solution to the equation and an approximate one obtained by the Euler scheme . Here 's what happened:
Question: how to plot an iterative solution x(i) not by index i, but by variable x = 0:0.1:10? To make it possible to compare the graphs adequately
Thank you!
x(1) = 1;
delta_t = 0.1;
n = 100;
for i = 1:n
hold on
grid on
x(i+1) = x(i)*(1-delta_t);
plot(i,x(i),'r.-')
ezplot('exp(-x)',[0 10]);
end

채택된 답변

Alan Stevens
Alan Stevens 2022년 9월 7일
Try multiplying i by delta_t in the plot command
x(1) = 1;
delta_t = 0.1;
n = 100;
for i = 1:n
hold on
grid on
x(i+1) = x(i)*(1-delta_t);
plot(i*delta_t,x(i),'r.-')
ezplot('exp(-x)',[0 10]);
end

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by