Sterling wrote: > Now how do I evaluate f itself at those same points. I can't seem to > figure it out. >
f is a vector-valued function. Right now, I think the best way to evaluate a vector-valued function is to declare it a vector: f = vector([f1(x1,x2,x3), f2(x1,x2,x3), f3(x1,x2,x3)]) We are still working on supporting vector-valued functions (or in general, functions from R^n to R^m) consistently, so you might run into some more inconsistencies. If you don't want to declare f a vector, then you can do something like: [g(x1=1,x2=3,x3=4) for g in f] Jason --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
