本文简要介绍 python 语言中 numpy.polynomial.polyutils.getdomain
的用法。
用法:
polynomial.polyutils.getdomain(x)
返回适合给定横坐标的域。
找到适合于在提供的值处定义的多项式或切比雪夫级数的域。
- x: array_like
将确定其域的一维横坐标数组。
- domain: ndarray
包含两个值的一维数组。如果输入是复数,则返回的两个点是包含点 x 的复平面中最小矩形(与轴对齐)的左下角和右上角。如果输入是实数,则这两个点是包含点 x 的最小区间的端点。
参数:
返回:
例子:
>>> from numpy.polynomial import polyutils as pu >>> points = np.arange(4)**2 - 5; points array([-5, -4, -1, 4]) >>> pu.getdomain(points) array([-5., 4.]) >>> c = np.exp(complex(0,1)*np.pi*np.arange(12)/6) # unit circle >>> pu.getdomain(c) array([-1.-1.j, 1.+1.j])
相关用法
- Python numpy polyutils.as_series用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
- Python numpy polyutils.mapparms用法及代码示例
- Python numpy polyutils.trimcoef用法及代码示例
- Python numpy polyder用法及代码示例
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy polynomial.polyline用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polysub用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polydiv用法及代码示例
- Python numpy polynomial.polyval用法及代码示例
- Python numpy polynomial.polysub用法及代码示例
- Python numpy poly1d用法及代码示例
- Python numpy polynomial.polyx用法及代码示例
- Python numpy polyint用法及代码示例
- Python numpy polyval用法及代码示例
- Python numpy polynomial.set_default_printstyle用法及代码示例
- Python numpy polymul用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.polyutils.getdomain。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。