本文简要介绍 python 语言中 matplotlib.cbook.pts_to_poststep
的用法。
-
将实线转换为post-steps。
给定一组
N
点转换为2N + 1
点,当它们线性连接时,会给出一个阶跃函数,该函数会在间隔结束时改变值。- 参数:
- x 数组
-
台阶的 x 位置。可能是空的。
- y1, ..., yp 数组
-
y 数组要变成步骤; all 的长度必须与
x
相同。
- 返回:
- 数组
-
x 和 y 值以与输入相同的顺序转换为步长;可以解压缩为
x_out, y1_out, ..., yp_out
。如果输入的长度是N
,那么这些数组中的每一个都将是长度2N + 1
。对于N=0
,长度为 0。
例子
>>> x_s, y1_s, y2_s = pts_to_poststep(x, y1, y2)
用法
matplotlib.cbook.pts_to_poststep(x, *args)
相关用法
- Python matplotlib pts_to_prestep用法及代码示例
- Python matplotlib pts_to_midstep用法及代码示例
- Python matplotlib plot用法及代码示例
- Python matplotlib axvspan用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib subplots用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
- Python matplotlib warn_deprecated用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.cbook.pts_to_poststep。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。