I have a procedure in Maple
for Q in [2,4] do
plot([Q, y, y=0..TR(Q)], thickness=2, linestyle=dash):
textplot([Q, TR(Q), "Some text"], align={above, right})
end do;
but it prints 4 plots in each row (2 plots for each element in the list).
Instead, I want the 4 plots in the same plot. I know I can normally use display but I don't know how to do this when the plots are created inside a procedure.
Besides, the plot should also display some plots created outside of the procedure.
displaybut it seems like a bad approach to the problem – Jamgreen Aug 04 '15 at 17:51