def poly1d(coeff): """generates a 1-D polynomial instance from a list of coefficients using numpy.poly1d(coeffs)""" return npoly1d(coeff)