graphics_array arguments
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?