close all
clear all
x0 = 100;
r=1.02;
for j=1:1:5
x(1) = x0;
x(j+1) = r*x(j);
end
plot(j, x(j))
grid on

 채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 8월 26일

0 개 추천

x0 = 100;
r=1.02;
%Bring the assignment out of loop, as it is not affected by the loop
x = x0;
%Define indices to loop over
j = 1:5;
for k=j
x(k+1) = r*x(k);
end
%Plot with markers to show the data points
plot(j,x(j),'bo-')
grid on

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

릴리스

R2015a

태그

질문:

2023년 8월 26일

답변:

2023년 8월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by