Download MuPAD from SciFace

MuPAD Pro Computing Essentials - Examples 

Example 8.4 - Plotting inequalities

Here we plot intersection of two regions that are representing two inequalities.

export(plot, inequality):
 
p1 := inequality(
   [x^2 + y^2 <1 ,y>x^2], x = -2..2, y = -2..2,
   Grid = [8,8],
   Colors = [RGB::Brown, RGB::Orange, RGB::Blue]
):
  
plot(p1, Scaling = Constrained, Axes = Box)

 

TOP