Ask Your Question
1

graphics_array arguments

asked 2010-12-20 20:43:28 +0200

Eviatar Bach gravatar image

updated 2010-12-20 20:44:44 +0200

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?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
1

answered 2010-12-21 18:26:19 +0200

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)
edit flag offensive delete link more
1

answered 2010-12-21 15:39:52 +0200

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.

edit flag offensive delete link more

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: 2010-12-20 20:43:28 +0200

Seen: 380 times

Last updated: Dec 21 '10