Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-29 Thread sympy
Comment #31 on issue 884 by smi...@gmail.com: One line matrix and one column matrix confusion http://code.google.com/p/sympy/issues/detail?id=884 see also issue 930 -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group, send

Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-28 Thread sympy
Updates: Cc: Vinzent.Steinberg sherjilo...@gmail.com ronan.l...@gmail.com Comment #30 on issue 884 by asmeurer: One line matrix and one column matrix confusion http://code.google.com/p/sympy/issues/detail?id=884 OK, I still don't know if you are right or not. I'd like some more

Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-27 Thread sympy
Updates: Labels: smichr NeedsReview Comment #24 on issue 884 by smi...@gmail.com: One line matrix and one column matrix confusion http://code.google.com/p/sympy/issues/detail?id=884 OK, I found this issue after trying to use the Matrix object the other day. There is presently and

Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-27 Thread sympy
Comment #26 on issue 884 by asmeurer: One line matrix and one column matrix confusion http://code.google.com/p/sympy/issues/detail?id=884 How do numpy matrices behave? -- You received this message because you are subscribed to the Google Groups sympy-patches group. To post to this group,

Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-27 Thread sympy
Comment #27 on issue 884 by smi...@gmail.com: One line matrix and one column matrix confusion http://code.google.com/p/sympy/issues/detail?id=884 n.matrix(1,2) TypeError: data type not understood n.matrix([1,2]) # row vector matrix([[1, 2]]) n.matrix([[1],[2]]) #column vector

Re: Issue 884 in sympy: One line matrix and one column matrix confusion

2011-08-27 Thread sympy
Comment #28 on issue 884 by smi...@gmail.com: 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