Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

symbolic function with a variable list of parameters

I knw that I can define a symbolic function as fro example: f1(r, theta, phi)=function('f1')(r, theta, phi) Now I want (r,theta,phi) to be a parameter :

list_of_variables = (r,theta, phi ) f1( list_of_variables ) = function('f1')(list_of_variables).

I tried: f1( list_of_variables ) = function('f1')(list_of_variables), but this doesn't work. Any idea on what I can do? Thanks in advance