使用python获取正弦曲线值
我正在寻找使用 python 创建一条正弦曲线。我想要一个代码来生成正弦曲线形式的值。这样,如果我绘制这些值,我应该得到这条曲线。有人可以帮我吗?我应该能够改变达到峰值所需的值的数量(基本上是改变频率)。谢谢
I am looking to create a sin curve using python. I want a code to generate the values in the form of a sine curve. Such that if i plot those values i should get this curve. Can someone help me with this ? I should be able to differ the number of values it takes to reach the peak (basically varying the frequency). Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你安装了 Matplotlib 和 NumPy 吗?
如果不需要绘图,请跳过最后几步。
Have you got Matplotlib and NumPy installed?
Skip the last few steps if you don't need the plot.
您可以使用 matplotlib 绘制任意公式:
这将打开一个交互式窗口,您可以在其中保存图像。或者,调用
savefig
将图像存储在文件中。作为参考,无需任何更多样式,结果将如下所示:You can plot arbitrary formulas with matplotlib:
This will be open an interactive window from where you can save the image. Alternatively, call
savefig
to store the image in a file. For reference, without any more styling, the result will look like: