I'm trying to make graphics array with plots containing tick marks and a 
titles. 

When displayed individually, a.show(), b.show(), they display correctly. In 
a graphics_array however, the first graph looses these attributes (b).

f=4*sin(3*x)
b=plot(f,0,pi/3,ticks=pi/6,tick_formatter=pi, title="$4 sin(3\\theta)$")
b+=plot(f,pi/3, 2*pi/3,ticks=pi/6,tick_formatter=pi,color='red')
b+=plot(f,2*pi/3,pi, ticks=pi/6,tick_formatter=pi,color='green')
a=polar_plot(f,0,pi/3, title="Polar plot of $r=4 sin(3\\theta)$")
a+=polar_plot(f,pi/3,2*pi/3, color='red')
a+=polar_plot(f,2*pi/3,pi, color='green')
ga=graphics_array((b,a))
b.show()
a.show()
ga.show()

Also, I'd like to have an over-all title for the two graphs. Is there a way 
to do that?

Thanks,

Andy

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to