Effacer les filtres
Effacer les filtres

Graphing a system of equations on the same set of axes

2 vues (au cours des 30 derniers jours)
Zelda Luxenburry
Zelda Luxenburry le 27 Juin 2011
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!

Réponse acceptée

Matt Fig
Matt Fig le 27 Juin 2011
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')

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by