本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。