I would expect doit() to do the elementwise multiplication and return a single matrix:
Issue #8557 <https://github.com/sympy/sympy/issues/8557> I am new to Sympy community. I wanted to get started with this bug. Can anyone explain more about this bug ? Thanks in Advamce. In [15]: h = sympy.hadamard_product(sympy.Matrix([1, 1]), sympy.Matrix([2, 2])) In [16]: h Out[16]: Matrix([ [1], [1]]).*Matrix([ [2], [2]]) In [17]: h.doit() Out[17]: Matrix([ [1], [1]]).*Matrix([ [2], [2]]) In [18]: sympy.__version__ Out[18]: '0.7.6-git' -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/94b545fc-573c-48b3-a098-114fee169c1c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
