| 1 | initial version |
You can use MakeCallable = vector:
sage: R=PolynomialRing(QQ,5,"x")
sage: R.inject_variables()
Defining x0, x1, x2, x3, x4
sage: L=vector([x0*x1, x2, x3*x4])
sage: L(1,1,1,1,1)
(1, 1, 1)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.