On 9/7/10 9:36 AM, andrew ewart wrote:
ef is the resultant of poly_ran


Ah.  So you need to make that assignment (outside of the function):

ef=polyran()
quickfactor(ef)

or even shorter:

quickfactor(polyran())

Note that the ef defined inside of polyran is local to that function; it is not visible outside of the function. To use the result of polyran, you'd need to run the function and assign ef to the output (like in the first example above).

Thanks,

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
URL: http://www.sagemath.org

Reply via email to