This question already has answers here:
Relationship between SciPy and NumPy
(8个答案)
三年前关闭。
我开始知道纽比和西皮都有多功能性,并访问了这里:http://docs.scipy.org/doc/numpy/reference/generated/numpy.polyfit.html
为什么scipy.org有一个关于numpy.polyfit的页面?numpy.polyfit和scipy.polyfit是否相同?如果没有,我应该用哪一个?

最佳答案

polyfit不是由scipy实现的。There is a linescipy.__init__

from numpy import *

这就是如何将名称拉入scipy的名称空间。
你用哪种方法没有任何区别,因为它们实际上是内存中的同一个对象:
>>> import scipy
>>> import numpy
>>> scipy.polyfit is numpy.polyfit
True

你也可以去掉中间人,使用numpy中的中间人。

关于python - numpy.polyfit和scipy.polyfit有什么区别? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38269897/

10-12 07:12