Rodrigo245
Computer
- Aug 6, 2006
- 9
Is it possible to draw two graphs in one picture?
For example: I have inequation:
abs(x^2 + 3x + 2) < abs(x^3 + 1)
I know how to draw one graph at once:
y = abs(x^2 + 3*x + 2)
ezplot
y1 = abs(x^3 + 1)
ezplot(y1)
But I would like to draw both graph on the same picture, so I can compare the results. Is this possible?
For example: I have inequation:
abs(x^2 + 3x + 2) < abs(x^3 + 1)
I know how to draw one graph at once:
y = abs(x^2 + 3*x + 2)
ezplot
y1 = abs(x^3 + 1)
ezplot(y1)
But I would like to draw both graph on the same picture, so I can compare the results. Is this possible?