예제 #1
0
파일: poly.py 프로젝트: agamdua/mystic
def poly1d(coeff):
    """generates a 1-D polynomial instance from a list of coefficients
using numpy.poly1d(coeffs)"""
    return npoly1d(coeff)
예제 #2
0
def poly1d(coeff):
    """generates a 1-D polynomial instance from a list of coefficients
using numpy.poly1d(coeffs)"""
    return npoly1d(coeff)