|  |  7.10.6.12 ncratFromPoly Procedure from libraryncrat.lib(see  ncrat_lib).
 
Example:Usage:
ncrat f = ncratFromPoly(p);
p of type poly
 
Return:
convert poly to ncrat
 |  | LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
poly p = 2 * x * y;
ncrat f = ncratFromPoly(p);
print(f);
==> 2*x*y
 | 
 
 |