我目前有个项目在C#中使用CubicSpline,但是我发现用MathNet.Numerics中CubicSpline的InterpolateNatural这个函数插值出来的数据,跟使用matlab还有python写的插值出来的数据对不上.
然后我通过python的代码反推,很确定就是CubicSpline中边界条件类型导致.matlab跟python的默认都是"not-a-knot",而MathNet.Numerics只有InterpolateNatural,对应的边界条件类型是"natural".
请问一下在MathNet.Numerics.CubicSpline中时候有对应的设置???