フィルターのクリア

Could anyone help me how to plot the graph for more than one variable.

1 回表示 (過去 30 日間)
jaah navi
jaah navi 2019 年 7 月 4 日
回答済み: KALYAN ACHARJYA 2019 年 7 月 4 日
code:
x=[0.1 1 2 3 4]
y=[0.05 0.06 0.06 0.06 0.06 ]
z=[0.14 0.18 0.18 0.18 0.18]
plot(x,y,'-*')
plot(x,z,'-^')
I want to plot the above code in a single graph.
when i run the code i can see only one line on the graph.
Could anyone please help me how to get both lines on the graph.

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 7 月 4 日
x=[0.1 1 2 3 4]
y=[0.05 0.06 0.06 0.06 0.06 ]
z=[0.14 0.18 0.18 0.18 0.18]
plot(x,y,'-*');
hold on;
plot(x,z,'-^')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDirected Graphs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by