/** * Returns the polynomial with all coeffients the absolute value of the given * polynomial. * * @param p a polynomial with coefficients given densely as an array of double-double * floating point numbers from highest to lowest power * * @doc */ declare function ddAbsCoeff(p: number[][]): number[][]; export { ddAbsCoeff };