functions with vector inputs
Are vector functions supported in sage?
as in:
f1(r,phi,theta) = 1/r
f2(r,phi,theta) = 1
f3(r,phi,theta) = 1
F = vector([f1, f2, f3])
G=rot(F) # vector function
An ancient post seems to suggest that rot has to be defined with a positional python-argument like rot(*F).
Is there a way for "rot" to take the vector symbolically as an argument?
I think I know what you mean now. `sage: rot(r,phi,theta) = F` could in theory make a vector function, but it doesn't currently know what to do.