Question: Keep scaling and view when plot is within an array

The code below is just to illustrate the issue. Is there any way to keep the chosen scaling and view when the plots are placed within an array? As the code below will show the scaling and view for a plot in an array has a mind of its own! I tried plotting a and b with both plots in them but with one in white - so it looked as if there was only one plot - but that did not work. restart; > with (plots): a:=plot(x^2/10,x=1..50,scaling=constrained,view=[0..120,0..800]): > b:=plot(-x^2+50*x,x=1..60,color=green,scaling=constrained,view=[0..120,0..800]): > display(a,b); > > g:=array(1..2): > g[1]:=a: > g[2]:=b: > display(g,view=[0..120,0..800],scaling=constrained); >
Please Wait...