Status: Accepted
Owner: [email protected]
Labels: Type-Defect Priority-Medium
New issue 2655 by [email protected]: M.row(0) -> 0 row of matrix
http://code.google.com/p/sympy/issues/detail?id=2655
Although slicing is implemented, it would be nice if the row and col
methods would either allow manipulation of a row (if a function is given)
or else allow selection of the row if not.
Matrix([[1,2,3],[4,5,6]])
[1, 2, 3]
[4, 5, 6]
M=_
M.row(1)
[4, 5, 6]
M.col(1)
[2]
[5]
https://github.com/sympy/sympy/pull/580
--
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.