本文简要介绍 python 语言中 numpy.printoptions
的用法。
用法:
numpy.printoptions(*args, **kwargs)
用于设置打印选项的上下文管理器。
设置打印选项的范围和阻止,并在最后恢复旧选项。看numpy.set_printoptions有关可用选项的完整说明。
例子:
>>> from numpy.testing import assert_equal >>> with np.printoptions(precision=2): ... np.array([2.0]) / 3 array([0.67])
with-statement 的 as-clause 给出了当前的打印选项:
>>> with np.printoptions(precision=2) as opts: ... assert_equal(opts, np.get_printoptions())
相关用法
- Python numpy promote_types用法及代码示例
- Python numpy prod用法及代码示例
- Python numpy polyder用法及代码示例
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy put_along_axis用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy piecewise用法及代码示例
- Python numpy polynomial.polyline用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy pmt用法及代码示例
- Python numpy polyutils.as_series用法及代码示例
- Python numpy percentile用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polysub用法及代码示例
- Python numpy polyutils.getdomain用法及代码示例
- Python numpy power用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
- Python numpy putmask用法及代码示例
- Python numpy polyutils.mapparms用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polydiv用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.printoptions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。