用连续线绘制茎

发布于 2024-08-30 16:23:23 字数 343 浏览 3 评论 0原文

我需要使用 python 和 matplotlib 绘制信号的干图。

我看到了示例和代码,但是连接黑色大点和 x 轴的线不是连续线。您知道是否可行以及如何获得直线?

#!/usr/bin/env python
from pylab import *

x = linspace(0.1, 2*pi, 10)
markerline, stemlines, baseline = stem(x, cos(x), '-.')
setp(markerline, 'markerfacecolor', 'b')
setp(baseline, 'color','r', 'linewidth', 2)

show()

I need to plot a stem plot of my signal using python and matplotlib.

I saw the example and the code but the line connecting the black big dot and the x-axis is not a continous line. Do you know whether is possible and how to get a straight line instead?

#!/usr/bin/env python
from pylab import *

x = linspace(0.1, 2*pi, 10)
markerline, stemlines, baseline = stem(x, cos(x), '-.')
setp(markerline, 'markerfacecolor', 'b')
setp(baseline, 'color','r', 'linewidth', 2)

show()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白色秋天 2024-09-06 16:23:23

'-.' 更改为 '-'

markerline, stemlines, baseline = stem(x, cos(x), '-')

最后一个参数表示 线条样式

Change '-.' to '-':

markerline, stemlines, baseline = stem(x, cos(x), '-')

The final argument indicates the line style.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文