1

我有需要创建二次方程的数据点。我们是否有任何创建二次方程的 python 模块。我有手动方法,在下面的链接中提到。但我觉得它可以在 Python 中更好。在下面的例子中,他们拿了 3 分,但在我的情况下,它会根据用户输入而变化

http://www.algebra.com/algebra/homework/quadratic/Quadratic_Equations.faq.question.192159.html

4

1 回答 1

1

看看http://www.numpy.org/

>>> import numpy as np
>>> A, B, C = np.polyfit([1,2,3],[4,7,12],2)
>>> print A, B, C
1.0 -4.2727620148e-15 3.0
>>> print A, 'x^2 +', B, 'x +', C
1.0 x^2 + -4.2727620148e-15 x + 3.0
>>>
于 2013-10-03T12:47:11.540 回答