sympy 1.1 : Strange behavior in Matrix.hstack

41 views
Skip to first unread message

Antoine Falaize

unread,
Jul 10, 2017, 9:11:01 PM7/10/17
to sympy
Hello sympy planet!
Is there any reason for the following behavior?

In sympy 1.0:
>>> import sympy as sy
>>> M1 = sy.Matrix.zeros(0, 0)
>>> M2 = sy.Matrix.zeros(0, 1)
>>> M3 = sy.Matrix.zeros(0, 2)
>>> M4 = sy.Matrix.zeros(0, 3)
>>> sy.Matrix.hstack(M1, M2, M3, M4).shape
(0, 6)

But in sympy 1.1:
>>> M1 = sy.Matrix.zeros(0, 0)
>>> M2 = sy.Matrix.zeros(0, 1)
>>> M3 = sy.Matrix.zeros(0, 2)
>>> M4 = sy.Matrix.zeros(0, 3)
>>> sy.Matrix.hstack(M1, M2, M3, M4).shape
(0, 3)

whereas:
>>> M1 = sy.Matrix.zeros(1, 0)
>>> M2 = sy.Matrix.zeros(1, 1)
>>> M3 = sy.Matrix.zeros(1, 2)
>>> M4 = sy.Matrix.zeros(1, 3)
>>> sy.Matrix.hstack(M1, M2, M3, M4).shape
(1, 6)

Aaron Meurer

unread,
Jul 11, 2017, 9:14:48 AM7/11/17
to sy...@googlegroups.com
Looks like a bug. Can you open an issue in the issue tracker?

Aaron Meurer
> --
> You received this message because you are subscribed to the Google Groups
> "sympy" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to sympy+un...@googlegroups.com.
> To post to this group, send email to sy...@googlegroups.com.
> Visit this group at https://groups.google.com/group/sympy.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sympy/19bfd65d-6ffa-4b91-bd6d-c6ea48ddf71d%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

Antoine Falaize

unread,
Jul 11, 2017, 9:37:17 AM7/11/17
to sympy
Reply all
Reply to author
Forward
0 new messages