Hello, following the advice of Aaron, here is a more generic way to do that.
*=== CODE ===* *from sympy import ** *variables = [* * x for x, _ in zip(* * numbered_symbols(prefix = 'x', start = 1), * * range(1,4)* * )* *]* *functions = [* * f for f, _ in zip(* * numbered_symbols(prefix = 'f', cls = Function, start = 1), * * range(1,4)* * )* *]* *F = [f(*variables) for f in functions]* 2013/12/24 benjamin <[email protected]> > Thank you guys a lot. > > Is there something like numbered_Functions function? > > -- > 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. > For more options, visit https://groups.google.com/groups/opt_out. > -- 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. For more options, visit https://groups.google.com/groups/opt_out.
