padiclib.spad line 1 [edit on github]
IntegralBasisPolynomialTools provides functions for mapping functions on the coefficients of univariate and bivariate polynomials.
mapBivariate(f, p(x, y))
applies the function f
to the coefficients of p(x, y)
.
mapMatrixIfCan(f, mat)
applies the function f
to the coefficients of the entries of mat
if possible, and returns "failed"
otherwise.
mapUnivariate(f, p(x))
applies the function f
to the coefficients of p(x)
.
mapUnivariate(f, p(x))
applies the function f
to the coefficients of p(x)
.
mapUnivariateIfCan(f, p(x))
applies the function f
to the coefficients of p(x)
, if possible, and returns "failed"
otherwise.