在SciPy中搜索函数`LinearNDInterpolator`的源代码

时间:2018-12-31 20:31:10

标签: python github scipy

我正在尝试检查以下Python代码中调用的函数LinearNDInterpolator

from scipy.interpolate.interpnd import LinearNDInterpolator

我来到SciPy GitHub branch scipy/scipy/interpolate,但找不到{intercept}少得多了LinearNDInterpolator。函数scipy/scipy/interpolate/ndgriddata.py使用函数LinearNDInterpolator。我怀疑这是因为interpnd不是Python脚本,而是Python环绕的C ++甚至Fortran之类的东西。是这样吗?

1 个答案:

答案 0 :(得分:3)

好像是用Cython编写的。
Source code link