Plot figures in loop as superimposed top on top

2 Ansichten (letzte 30 Tage)
JohnDylon
JohnDylon am 19 Nov. 2016
Kommentiert: Image Analyst am 20 Nov. 2016
Similar questions should have been asked however I couldn't get a solution.
Plot can superimpose these loop figures onto one another:
figure();
hold all
for i=1:2:11
y=i;
plot(x,y);
end
However, interestingly can't do the same here:
figure();
hold all
for i=1:2:11
y=x.^i;
plot(x,y);
end
What it does is plotting only the last figure. Any ideas why is this?

Antworten (1)

KSSV
KSSV am 19 Nov. 2016
Bearbeitet: KSSV am 19 Nov. 2016
Used hold on after the plot inside loop.
  5 Kommentare
KSSV
KSSV am 20 Nov. 2016
What is x?
Image Analyst
Image Analyst am 20 Nov. 2016
Is x a vector or scalar? What is/are its value(s) exactly? Give code to generate x.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D 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!

Translated by