Comment #5 on issue 2544 by [email protected]: Matrix(...)[i] for non-vector
matrices should not be supported.
http://code.google.com/p/sympy/issues/detail?id=2544
M.row(i) and M.col(i) now give the ith row and column, respectively. The
slice syntax is consistent with treating M like a list of values:
>>> M=Matrix(2,5,range(10))
>>> M[:]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> M[3:6]
[3, 4, 5]
--
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.