|  |  7.10.6.13 ncratPower Procedure from libraryncrat.lib(see  ncrat_lib).
 
Example:Usage:
ncrat h = ncratPower(f, n);
f of type ncrat, n integer
 
Return:
h = f^n
 |  | LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
ncrat f = ncratFromString("2*x*y");
ncrat h = ncratPower(f, 3);
print(h);
==> 2*x*y*2*x*y*2*x*y
 | 
 
 |