Interp1d.jl:用于单变量插值的Julia包 源码
Interp1d 用于单变量插值的Julia包。 该软件包的灵感来自函数。 要求 Julia 1.6.x或更高版本。 安装 如果您要使用最新的开发版本, using Pkg;Pkg . add (url = " https://github.com/AtsushiSakai/Interp1d.jl.git " ) 如何使用 您可以使用多种单变量插值: using Interp1d using PyPlot xi = collect ( 0.0 : 10.0 ) # x of interpolated points yi = exp .( - xi ./ 3.0 ) # y of interpolated points x = collect ( - 1.0 : 0.1 : 11.0 ) # sampling points for mode in INTERP_MODE_LIST #
用户评论