摘要: 1、np.poly1d()此函数有两个参数: 参数1:为一个数组,若没有参数2,则生成一个多项式,例如: p = np.poly1d([2,3,5,7]) print(p) ==>>2x3 + 3x2 + 5x + 7 数组中的数值为coefficient(系数),从后往前 0,1,2.。。为位置书 阅读全文
posted @ 2018-09-10 18:28 Elience 阅读(26610) 评论(1) 推荐(0) 编辑