10

假设我有一个双打数组,使用Akima 插值对这个系列进行采样的好算法是什么?我太愚蠢了,无法将数学描述转化为代码。

// 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)
{
  ...?
}
4

2 回答 2

28

重新发布和扩展我对另一个 SO 问题的回答,该问题已作为该问题的副本而关闭 - 正如对该问题的评论所建议的那样。

Akima 的原始论文:“基于局部程序的插值和平滑曲线拟合的新方法”,ACM 杂志 17, 4 (1970), 589-602

http://www.leg.ufpr.br/lib/exe/fetch.php/wiki:internas:biblioteca:akima.pdf

C 实现

https://github.com/ampl/gsl/blob/master/interpolation/akima.c

C# 实现

https://gist.github.com/dreikanter/3526685

Delphi 实现(参见 delphi/src/spline3.pas 中的过程 BuildAkimaSpline)

http://www.alglib.net/translator/re/alglib-2.6.0.delphi.zip

Akima 的 Fortran 66 实现

http://cran.r-project.org/web/packages/akima/

Fortran 90 实现

http://miyoshi.googlecode.com/svn-history/r72/trunk/common/common.f90

Java 实现

https://commons.apache.org/proper/commons-math/jacoco/org.apache.commons.math3.analysis.interpolation/AkimaSplineInterpolator.java.html

Lisp 实现“用于 AutoCAD 2d-Polylines”

http://autocad.xarch.at/code/candido/akima.lsp

Matlab实现

http://www.mathworks.se/matlabcentral/fileexchange/1814-akima-interpolation

Pascal实现(程序说明

http://jean-pierre.moreau.pagesperso-orange.fr/Pascal/akima_pas.txt

Python 实现

http://www.lfd.uci.edu/~gohlke/code/akima.py.html

VB6 实现(参见 vb6/src/spline3.bas 中的子程序 BuildAkimaSpline)

http://www.alglib.net/translator/re/alglib-2.6.0.vb6.zip

http://www.koders.com/cpp/fid1393B9D668316C1700966643DE0609660B9CB13A.aspx?s=%22Brian+Smith%22

于 2011-01-09T05:46:31.850 回答
7

在谷歌代码搜索中获得了一些点击,但这不是我很了解的领域。第一个结果是针对Math.NET的,这可能会引起一些兴趣。

于 2010-09-04T01:54:55.097 回答