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 matrix

Or you could just import it under a different name:

from numpy import zeros as vzeros
from sympy import zeros as mzeros

Would that work?

/c

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to