how to graph using loop?

조회 수: 2 (최근 30일)
Khang Nguyen
Khang Nguyen 2020년 11월 21일
댓글: Khang Nguyen 2020년 11월 21일
I want to calculate a problem and graph it
I want to graph i and area but it only show one point on my graph
% question1
clear all
a = 1
vectori = []
areavec = []
figure;
for i = 0:20
a = a + a
area = a *(1/8).^i
scatter(i,area)
end

채택된 답변

the cyclist
the cyclist 2020년 11월 21일
편집: the cyclist 2020년 11월 21일
Put the command
hold on
on the line after figure.

추가 답변 (1개)

Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 21일
편집: Setsuna Yuuki. 2020년 11월 21일
You must change this:
clear all
a = 1
vectori = []% ??
areavec = []
figure;
for i = 0:20
a = a + a
areavec(i+1) = a *(1/8).^i %area --> areavec and areavec is a vector, not a scalar
end
i = 0:20;
scatter(i,areavec) %area --> areavec and graph must be out of cycle
  댓글 수: 4
Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 21일
I edited my answer, now this works :D
Khang Nguyen
Khang Nguyen 2020년 11월 21일
lovely: thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by