Hi,
I have
t=0:0.01:10
x=a*t
y=sin(x)
and a has two values a=2, a=3
I want to plot (x, y) with two values of a in the same loop. Thanks in advance

 採用された回答

Sean de Wolski
Sean de Wolski 2012 年 2 月 3 日

0 投票

t=0:0.01:10;
a = [2 3];
x=a'*t;
y=sin(x);
plot(x',y')

5 件のコメント

zina ben
zina ben 2012 年 2 月 3 日
thinks,
but if a is un input and it can take any value what can i do
Sean de Wolski
Sean de Wolski 2012 年 2 月 3 日
rewrite it as a function that takes a row vector a...
or if it takes a column vector a, you can skip the transpose in the calculation of x.
zina ben
zina ben 2012 年 2 月 3 日
but i need the graphe for each one value of a in the same figure
Sean de Wolski
Sean de Wolski 2012 年 2 月 3 日
This answer had that...
Walter Roberson
Walter Roberson 2012 年 2 月 3 日
Yes, Sean's solution should work just fine, and it is worth eventually studying how it works. It is a more advanced and less technique. But first you should study "hold on" as you will use that more in practice.

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 2 月 3 日

0 投票

t = 0 : 0.01 : 10
for a = 2 : 3
x = a .* t;
y = sin(x);
plot(x, y);
hold on % <---- THIS
end
Which is the same solution you were told in your two previous questions on the same topic.

3 件のコメント

zina ben
zina ben 2012 年 2 月 3 日
thinks,
It is a simple idea
Walter Roberson
Walter Roberson 2012 年 2 月 3 日
If you have a vector of inputs stored in "a", then
t = 0 : 0.01 : 10;
for thisa = a
x = thisa .* t;
y = sin(x);
plot(x, y);
hold on % <---- THIS
end
zina ben
zina ben 2012 年 2 月 3 日
But if i write a= input ('a')
and i chose any value of( a), after i need plot different graph with different value of( a )in the same figure

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

カテゴリ

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

タグ

質問済み:

2012 年 2 月 3 日

編集済み:

2013 年 9 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by