Status: Accepted
Owner: asmeurer
Labels: Type-Defect Priority-Medium Matrices

New issue 1994 by asmeurer: repr(Matrix) does not give re-executable string
http://code.google.com/p/sympy/issues/detail?id=1994

In [2]: repr(Matrix([1, 2, 3]))
Out[2]:
[1]
[2]
[3]

In [3]: repr(Matrix([[1, 2], [3, 4]]))
Out[3]:
[1, 2]
[3, 4]

These should return "Matrix([1, 2, 3])" and "Matrix([[1, 2], [3, 4]])", or something else that when re-executed, returns the same Matrix, in fitting with the repr() guidelines.

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to