Thanks for pointing this out. That's pretty exciting. If someone has access to Maple 18, it would be great to see what all this does. It looks like it also uses NumPy and SciPy.
Aaron Meurer On Thu, Jan 29, 2015 at 1:02 AM, Denis Akhiyarov <[email protected]> wrote: > Has anyone tried out Python (sympy, numpy. scipy) code generation from > Maple? > > > http://www.maplesoft.com/products/maple/new_features/maple18/Code_Generation.aspx > > *[image: Python(proc (m) options operator, arrow; add(ithprime(i), i = 1 > .. m) end proc)]* > import sympy > def cg0 (m): > r = 0 > for i in range(1, m + 1): > r = r + sympy.prime(i) > return(r) > > -- > 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/491d119b-e7f8-4c3f-a665-0d0da7872c8e%40googlegroups.com > <https://groups.google.com/d/msgid/sympy/491d119b-e7f8-4c3f-a665-0d0da7872c8e%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- 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/CAKgW%3D6J3dQ2dkBdM9kGONHhYDs63Qi4zbcSgSw2JnWNyuCQN2A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
