| Author |
Comment/Response |
chelsea stiller
|
05/28/09 11:00am
I did a calculation and the answer was a long list of polynomials in 4 variable X,Y,Z,W Like
polys = big calculation
then the output is
{ X to the 5th, XYW, X squared plus Y squared ...}
I now want to create a function
f({X_,Y_,Z_,W_}) := polys
so I can evaluate the list at various points
like {1,2,3,4}
However you can't just do it by setting
f({X_,Y_,Z_,W_}) := polys
How do I do this.
URL: , |
|