本文简要介绍 python 语言中 scipy.interpolate.pade
的用法。
用法:
scipy.interpolate.pade(an, m, n=None)#
将 Pade 逼近作为两个多项式的比率返回多项式。
- an: (N,) 数组
泰勒级数系数。
- m: int
返回的近似多项式 q 的阶数。
- n: 整数,可选
返回的近似多项式的阶数p。默认情况下,顺序是
len(an)-1-m
.
- p, q: 多项式类
多项式的 Pade 近似由下式定义一个是
p(x)/q(x)
.
参数 ::
返回 ::
例子:
>>> import numpy as np >>> from scipy.interpolate import pade >>> e_exp = [1.0, 1.0, 1.0/2.0, 1.0/6.0, 1.0/24.0, 1.0/120.0] >>> p, q = pade(e_exp, 2)
>>> e_exp.reverse() >>> e_poly = np.poly1d(e_exp)
比较
e_poly(x)
和 Pade 近似值p(x)/q(x)
>>> e_poly(1) 2.7166666666666668
>>> p(1)/q(1) 2.7179487179487181
相关用法
- Python SciPy interpolate.pchip_interpolate用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy interpolate.InterpolatedUnivariateSpline用法及代码示例
- Python SciPy interpolate.BSpline用法及代码示例
- Python SciPy interpolate.LSQSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.griddata用法及代码示例
- Python SciPy interpolate.splder用法及代码示例
- Python SciPy interpolate.LinearNDInterpolator用法及代码示例
- Python SciPy interpolate.PPoly用法及代码示例
- Python SciPy interpolate.NdBSpline用法及代码示例
- Python SciPy interpolate.barycentric_interpolate用法及代码示例
- Python SciPy interpolate.RegularGridInterpolator用法及代码示例
- Python SciPy interpolate.NdPPoly用法及代码示例
- Python SciPy interpolate.interp2d用法及代码示例
- Python SciPy interpolate.approximate_taylor_polynomial用法及代码示例
- Python SciPy interpolate.RectSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.sproot用法及代码示例
- Python SciPy interpolate.splantider用法及代码示例
- Python SciPy interpolate.CloughTocher2DInterpolator用法及代码示例
- Python SciPy interpolate.interp1d用法及代码示例
- Python SciPy interpolate.BPoly用法及代码示例
- Python SciPy interpolate.BarycentricInterpolator用法及代码示例
- Python SciPy interpolate.splrep用法及代码示例
- Python SciPy interpolate.make_smoothing_spline用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.interpolate.pade。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。