Home Online Manual
Top
Back: ncratFromPoly
Forward: ncratEvaluateAt
FastBack:
FastForward:
Up: ncrat_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

7.10.6.13 ncratPower

Procedure from library ncrat.lib (see ncrat_lib).

Usage:
ncrat h = ncratPower(f, n);
f of type ncrat, n integer

Return:
h = f^n

Example:
 
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