python 의 플러그 인 scipy-interp 구현 코드

구체 적 인 코드 는 다음 과 같다.

import numpy as np
from matplotlib import pyplot as plt
from scipy.interpolate import interp1d
x=np.linspace(0,10*np.pi,num=20)
y=np.sin(x)
f1=interp1d(x,y,kind='linear')#    
f2=interp1d(x,y,kind='cubic')#      
x_pred=np.linspace(0,10*np.pi,num=1000)
y1=f1(x_pred)
y2=f2(x_pred)
plt.figure()
plt.plot(x_pred,y1,'r',label='linear')
plt.plot(x,f1(x),'b--','origin')
plt.legend()
plt.show()
plt.figure()
plt.plot(x_pred,y2,'b--',label='cubic')
plt.legend()
plt.show() 
这里写图片描述
这里写图片描述
총결산
위 에서 말 한 것 은 소 편 이 소개 한 python 의 플러그 인 scipy-interp 의 실현 코드 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기