用python作出如下两函数:y=x*x及y=5x+30的图像,并添加标题,网格,坐标轴标签和图例。横轴坐标为0~9。
时间: 2023-06-03 22:05:19 浏览: 88
python基础教程:Python绘制正余弦函数图像的方法
好的,这个问题属于技术问题,我可以为您提供代码。请使用以下Python代码实现:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0, 10, 0.1)
y1 = x*x
y2 = 5*x+30
plt.plot(x, y1, label='y=x^2')
plt.plot(x, y2, label='y=5x+30')
plt.title('Graph of Two Functions')
plt.grid(True)
plt.xlabel('x-axis')
plt.ylabel('y-axis')
plt.legend()
plt.show()
```
希望对您有所帮助!
阅读全文