First time here? Check out the FAQ!

Ask Your Question
0

Graphics array without ticks

asked 7 years ago

test1234 gravatar image

updated 7 years ago

vdelecroix gravatar image

Hello,

how can I create a graphics array consisting of 4 graphs without ticks? I tried this:

p1=plot(EllipticCurve([0,0,0,-1,2]), color='red', ticks=[[],[]])
p2=plot(EllipticCurve([0,0,0,1,-1]), color='red', ymin=-3, ymax=3, ticks=[[],[]])
p3=plot(EllipticCurve([0,0,0,-1,-1]), color='red', ymin=-4, ymax=4, ticks=[[],[]])
graphics_array(((p1,p2),(p3,p1)))

But it doesn't work. Only the last graphic is without ticks. Thank you very much! :)

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 7 years ago

kcrisman gravatar image

Unfortunately there are several long-standing graphics array issues. This one is probably Trac 10657.

Some workarounds are posited at this question and this question, though you would have to see whether they work for yours. I did try

graphics_array(((p1,p2),(p3,p1))).show( ticks=[[],[]])

and it seems to work.

Preview: (hide)
link

Comments

@kcrisman But I can't save the graphic anymore. Is it possible that I can save it too?

test1234 gravatar imagetest1234 ( 7 years ago )

Does graphics_array(((p1,p2),(p3,p1))).save( 'x.png', ticks=[[],[]]) not work?

kcrisman gravatar imagekcrisman ( 7 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 323 times

Last updated: Jul 15 '17