Plot figures in loop as superimposed top on top

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?

回答 (1 件)

KSSV
KSSV 2016 年 11 月 19 日
編集済み: KSSV 2016 年 11 月 19 日

0 投票

Used hold on after the plot inside loop.

5 件のコメント

JohnDylon
JohnDylon 2016 年 11 月 19 日
I tested this as well, it doesn't work.
KSSV
KSSV 2016 年 11 月 19 日
編集済み: KSSV 2016 年 11 月 19 日
figure(); hold on for i=1:2:11 y=i; plot(x,y,'.b'); end
JohnDylon
JohnDylon 2016 年 11 月 19 日
As I mentioned in the original question, it works when you pick y=i, but not for y=x.^i in the loop.
KSSV
KSSV 2016 年 11 月 20 日
What is x?
Image Analyst
Image Analyst 2016 年 11 月 20 日
Is x a vector or scalar? What is/are its value(s) exactly? Give code to generate x.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeLine Plots についてさらに検索

質問済み:

2016 年 11 月 19 日

コメント済み:

2016 年 11 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by