Comment #28 on issue 884 by [email protected]: One line matrix and one column matrix confusion
http://code.google.com/p/sympy/issues/detail?id=884
Alternatively (so we could say that the numpy result is always obtained by adding a bounding [] to the sympy args) we could disallow the Matrix(1,2,3) and then matrices are always instantiated with a series of lists:
Matrix([1]) Matrix([1,2,3]) Matrix([1,2,3],[4,5,6]) To get a colum vector, use Ondrej's suggetsion: Matrix([1,2,3]).T -- 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.
