This is example
from sympy import Symbol,Function
x1=Symbol ('x1')
x2=Symbol ('x2')
x3=Symbol ('x3')
f1=Function ('f1')
f2=Function ('f2')
f3=Function ('f3')
X=[]
X.append(x1)
X.append(x2)
X.append(x3)
F=[]
F.append(f1(x1,x2,x3))
F.append(f2(x1,x2,x3))
F.append(f3(x1,x2,x3))
is there any smarter way to do it?
thank you
--
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.