how to graph using loop?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Khang Nguyen
am 21 Nov. 2020
Kommentiert: Khang Nguyen
am 21 Nov. 2020
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
0 Kommentare
Akzeptierte Antwort
the cyclist
am 21 Nov. 2020
Bearbeitet: the cyclist
am 21 Nov. 2020
Put the command
hold on
on the line after figure.
0 Kommentare
Weitere Antworten (1)
Setsuna Yuuki.
am 21 Nov. 2020
Bearbeitet: Setsuna Yuuki.
am 21 Nov. 2020
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 Kommentare
Siehe auch
Kategorien
Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!