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. For more options, visit https://groups.google.com/d/optout.
