フィルターのクリア

Graphing a system of equations on the same set of axes

2 ビュー (過去 30 日間)
Zelda Luxenburry
Zelda Luxenburry 2011 年 6 月 27 日
Here is my question to solve: Graph the following system on the same set of axes.
{y=(-2/3)*x + 4/3 {y= -(x^2)/3 + 3 {y= 2*x +9
Any suggestions are welcome!

採用された回答

Matt Fig
Matt Fig 2011 年 6 月 27 日
x = -10:.1:10;
y1 =(-2/3)*x + 4/3;
y2 = -(x.^2)/3 + 3;
y3 = 2*x +9;
plot(x,y1,'b',x,y2,'r',x,y3,'k')

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by