本文简要介绍 python 语言中 numpy.polynomial.set_default_printstyle
的用法。
用法:
polynomial.set_default_printstyle(style)
设置多项式字符串表示的默认格式。
style
的值必须是__format__
的有效输入,即 ‘ascii’ 或 ‘unicode’。- style: str
默认打印样式的格式字符串。必须是 ‘ascii’ 或 ‘unicode’。
参数:
注意:
默认格式取决于平台:‘unicode’ 用于基于 Unix 的系统,‘ascii’ 用于 Windows。此确定基于对 unicode 上标和下标范围的默认字体支持。
例子:
>>> p = np.polynomial.Polynomial([1, 2, 3]) >>> c = np.polynomial.Chebyshev([1, 2, 3]) >>> np.polynomial.set_default_printstyle('unicode') >>> print(p) 1.0 + 2.0·x¹ + 3.0·x² >>> print(c) 1.0 + 2.0·T₁(x) + 3.0·T₂(x) >>> np.polynomial.set_default_printstyle('ascii') >>> print(p) 1.0 + 2.0 x**1 + 3.0 x**2 >>> print(c) 1.0 + 2.0 T_1(x) + 3.0 T_2(x) >>> # Formatting supersedes all class/package-level defaults >>> print(f"{p:unicode}") 1.0 + 2.0·x¹ + 3.0·x²
相关用法
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy polynomial.polyline用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polynomial.polyval用法及代码示例
- Python numpy polynomial.polysub用法及代码示例
- Python numpy polynomial.polyx用法及代码示例
- Python numpy polynomial.polytrim用法及代码示例
- Python numpy polynomial.polyfromroots用法及代码示例
- Python numpy polynomial.polyroots用法及代码示例
- Python numpy polynomial.polymul用法及代码示例
- Python numpy polynomial.polyzero用法及代码示例
- Python numpy polynomial.polyone用法及代码示例
- Python numpy polynomial.polypow用法及代码示例
- Python numpy polyder用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy polyutils.as_series用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polysub用法及代码示例
- Python numpy polyutils.getdomain用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.set_default_printstyle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。