如何使用python的matplotlib画正弦函数图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用python的matplotlib画正弦函数图像相关的知识,希望对你有一定的参考价值。
参考技术A 使用python的matplotlib画正弦函数图像,还要用到numpy库,代码如下9行所示:import numpy as np;
from matplotlib import pyplot as plt;
fig = plt.figure();
ax2= fig.add_subplot(111);
x=np.arange(0,100)/10;
y=np.sin(x);
ax2.plot(x,y);
plt.savefig('sine.png');
plt.show();
以上是关于如何使用python的matplotlib画正弦函数图像的主要内容,如果未能解决你的问题,请参考以下文章
Python matplotlib 基础练习:画出正弦曲线等
python使用matplotlib绘制一条正弦曲线(plot函数可视化sine plot)