我需要javascript中python的numpy.interp()
功能。
示例-如何在javascript中实现此功能?
result = np.interp(5,[0,10],[0,100])
答案 0 :(得分:1)
我不知道numpy.interp()
是什么,但是我可以用Google搜索它。看起来是这样:
https://docs.scipy.org/doc/numpy/reference/generated/numpy.interp.html
一维线性插值。
然后我们搜索javascript One-dimensional linear interpolation
,第一个结果是:
http://borischumichev.github.io/everpolate/
酷!是的,我想有一些您想做什么的图书馆。