插值和三次样条

时间:2015-11-01 20:12:56

标签: python interpolation cubic-spline

到目前为止,这是我的代码,现在我需要使用三次样条插值。我正在努力开始这个。任何方向将不胜感激

import numpy as np
import matplotlib.pyplot as plt 
plt.plot([np.log(0.2),np.log(2), np.log(20), np.log(200), np.log(2000), np.log(20000)], [np.log(103), np.log(13.9), np.log(2.72), np.log(0.800), np.log(0.401), np.log(0.433)], 'ro')
plt.ylabel('C(D)')
plt.xlabel('Re')
plt.show()

0 个答案:

没有答案