Comment #4 on issue 2544 by Vinzent.Steinberg: Matrix(...)[i] for non-vector matrices should not be supported.
http://code.google.com/p/sympy/issues/detail?id=2544
What I don't like about numpy:
v = matrix([1,2,3]) v
matrix([[1, 2, 3]])
v[0]
matrix([[1, 2, 3]])
v.transpose()[0]
matrix([[1]]) This behavior makes sense for arrays, but not for matrices IMHO. -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
