First time here? Check out the FAQ!

Ask Your Question
1

graphics_array arguments

asked 14 years ago

Eviatar Bach gravatar image

updated 14 years ago

For some reason, not all the arguments for graphics objects are transferred to graphics_array. For example, this code shows the axes and frames even though it is disabled in the individual graphics objects:

graphics_array([matrix_plot([[0,1,2]], frame=False, axes=False), matrix_plot([[0,1,2]], frame=False, axes=False)])

Is this a bug, and is there a way around this?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 14 years ago

Felix Lawrence gravatar image

The way I've been working around the bug is to send the arguments to the graphics_array.show() or .save() method:

graphics_array([matrix_plot([[0,1,2]]), matrix_plot([[0,1,2]])]).show(frame=False, axes=False)
graphics_array([matrix_plot([[0,1,2]]), matrix_plot([[0,1,2]])]).save(frame=False, axes=False)
Preview: (hide)
link
1

answered 14 years ago

Mike Hansen gravatar image

This is indeed a known bug #10466. I don't know a convenient way to work around this at the moment.

Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 14 years ago

Seen: 479 times

Last updated: Dec 21 '10