Issue 1633 in sympy: sympy change zeros() behaviour

2009-09-03 Thread codesite-noreply
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 1633 by diego.restrepo: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 I have an odd behavior in matplotlib because zeros() was generating matrices instead of vectors. In [1]: from numpy im

Issue 1633 in sympy: sympy change zeros() behaviour

2009-09-03 Thread codesite-noreply
Comment #1 on issue 1633 by smichr: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 If you simply do an 'import' rather than a 'from-import' then no variables will clash: import numpy numpy.zeros -> gives the vector import sympy sympy.zeros -> give the matr

Issue 1633 in sympy: sympy change zeros() behaviour

2009-09-04 Thread codesite-noreply
Comment #2 on issue 1633 by diego.restrepo: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 Sorry for the confusion. In fact after I detected the problem I was able to fix this. The point that I would like to emphasize is that sympy should be compatible wi

Re: Issue 1633 in sympy: sympy change zeros() behaviour

2011-04-10 Thread sympy
Comment #4 on issue 1633 by sherjilo...@gmail.com: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 This is a non-issue, IMHO. -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send em

Re: Issue 1633 in sympy: sympy change zeros() behaviour

2011-04-11 Thread sympy
Updates: Status: WontFix Comment #5 on issue 1633 by asmeurer: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 I think it should be. Although currently the easiest way to make a nxm matrix of zeros is to do Matrix(n, m, lambda i, j: 0). -- You rece

Re: Issue 1633 in sympy: sympy change zeros() behaviour

2011-04-11 Thread sympy
Comment #6 on issue 1633 by pr...@goodok.ru: sympy change zeros() behaviour http://code.google.com/p/sympy/issues/detail?id=1633 At least (I do not remember from what version) there is another way: >>> zeros((3, 2)) [0, 0] [0, 0] [0, 0] But the documentation in docs.sympy.org m