> Currently one must write > > sage: matrix([[1, 2], [3, 4]]) > [1 2] > [3 4] > sage: matrix([[1, 2], [3, 4]]) * matrix([[5, 6], [7, 8]]) > [19 22] > [43 50]
Well, one can avoid writing to much square brackets by doing : sage: matrix(2, [1,2,3,4]) [1 2] [3 4] sage: matrix(2, [1, 2, 3, 4]]) * matrix(2, [5, 6, 7, 8]) [19 22] [43 50] SL -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org