c# – 二进制数组的Akima插值

前端之家收集整理的这篇文章主要介绍了c# – 二进制数组的Akima插值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个双打的数组,使用 Akima interpolation来抽取这个系列的好算法是什么?我很愚蠢地将该数学描述转化为代码.
// values is an array of doubles
// idx is the index of the left-hand value for the current interpolation
// t is the normalized parameter between values[idx] and values[idx+1]
// Don't worry about array bounds,I'll handle that separately.
public double InterpolateAkima(double[] values,int idx,double t)
{
  ...?
}

解决方法

原文链接:https://www.f2er.com/csharp/94473.html

猜你在找的C#相关文章