Re: Plotting module

2007-12-31 Thread [EMAIL PROTECTED]
file:///home/saroj/Programming/sympy/plotting.patch Here you go. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sympy group. To post to this group, send email to sympy@googlegroups.com To unsubscribe from this

Conventions

2007-12-31 Thread Alan Bromborsky
If I want to submit a python module for sympy what conventions (programming, documenting, etc.) should I adhere to? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sympy group. To post to this group, send email to

Problem with numpy and sympy

2007-12-31 Thread Alan Bromborsky
Do we have a problem here? Can we make a numpy array of sympy symbols? import swiginac import numpy a = swiginac.symbol('AB') a AB A = numpy.array([a]) A array([AB], dtype=object) import sympy a = sympy.Symbol('AB') a AB A = numpy.array([a]) A array([], shape=(1, 0),