假設我有一個雙精度數組,什麼是使用Akima interpolation來抽樣這個系列的好算法?我太愚蠢了,不能將數學描述翻譯成代碼。雙數陣列的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)
{
...?
}
它看起來像一個大量的工作,沒有人會只編寫了你。它看起來非常直截了當,但一些好的編碼時間才能完成。不要猶豫,問你是否有一個你不明白的具體事情。 – 2010-08-17 19:14:40
@Albin,我想是夠了。立方插值就像10行代碼,我希望所有這個數學可以精簡到20行...... – 2010-08-17 19:50:38