博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] Hermite 插值
阅读量:6254 次
发布时间:2019-06-22

本文共 1075 字,大约阅读时间需要 3 分钟。

        

 

 

# -*- coding: utf-8 -*-#Program 0.5 Hermite Interpolationimport matplotlib.pyplot as pltimport numpy as np#计算基函数的导数值def dl(i, xi):	result = 0.0	for j in range(0,len(xi)):		if j!=i:			result += 1/(xi[i]-xi[j])	result *= 2	return result#计算基函数值def l(i, xi, x):	deno = 1.0	nu = 1.0	for j in range(0, len(xi)):		if j!= i:			deno *= (xi[i]-xi[j])			nu *= (x-xi[j])	return nu/deno#Hermite插值函数def get_Hermite(xi, yi, dyi):	def he(x):		result = 0.0		for i in range(0, len(xi)):			result += (yi[i]+(x-xi[i])*(dyi[i]-2*yi[i]*dl(i, xi))) * ((l(i,xi,x))**2)		return result	return heimport mathsr_x = [(i * math.pi) + (math.pi / 2) for i in range(-3, 3)]sr_fx = [math.sin(i) for i in sr_x]deriv = [0 for i in sr_x]                           # 导数都为 0Hx = get_Hermite(sr_x, sr_fx, deriv)  # 获得插值函数tmp_x = [i * 0.1 * math.pi for i in range(-20, 20)] # 测试用例tmp_y = [Hx(i) for i in tmp_x]                      # 根据插值函数获得测试用例的纵坐标#画图plt.plot(sr_x, sr_fx, 'ro')plt.plot(tmp_x, tmp_y, 'b-')plt.title('Hermite Interpolation')plt.show()

  

转载于:https://www.cnblogs.com/KennyRom/p/6626058.html

你可能感兴趣的文章
PERL Net::SMTP
查看>>
shedloads 大量 2016-10-02
查看>>
用explain 对sql语句进行优化 建议用多对一的方式查询
查看>>
Maven经验分享(一)安装部署
查看>>
Druid使用起步—在javaWeb项目中配置监控
查看>>
Android中Cursor类的概念和用法
查看>>
jquery select2 4.0版本中,ajax请求数据无法选中
查看>>
mysql密码忘记或修改密码的解决办法
查看>>
超链接上的提示
查看>>
C++多进程并发框架
查看>>
第九章:SpringBoot日志——(默认配置)
查看>>
java 写文件的三种方法比较
查看>>
OrgChart(组织机构图) - Flex
查看>>
在bat 中启动shell。
查看>>
AALaunchTransition
查看>>
Windows小技巧 – Win+R提高Windows使用效率
查看>>
yum 安装 nginx
查看>>
Android 3D旋转动画效果
查看>>
php数据类型(一)
查看>>
我的友情链接
查看>>