作出如下两函数:y=x*x及y=5x+30的图像,并添加标题,网格,坐标轴标签和图例。横轴坐标为0~9。
时间: 2023-08-31 14:33:45 浏览: 175
y=x.^2-10*x+15的图像matlab编程
### 回答1:
好的,以下是两个函数的图像和要求的元素:
```python
import matplotlib.pyplot as plt
import numpy as np
# 函数1
x = np.arange(0, 10, 1)
y1 = x * x
# 函数2
y2 = 5 * x + 30
# 绘图
plt.plot(x, y1, label='y=x*x')
plt.plot(x, y2, label='y=5x+30')
plt.title('两个函数的图像')
plt.xlabel('横轴坐标')
plt.ylabel('纵轴坐标')
plt.grid(True)
plt.legend()
plt.show()
```
图像如下:
![函数图像](https://img-blog.csdnimg.cn/20220301204437668.png)
### 回答2:
要绘制函数y = x * x和y = 5x + 30的图像,可以使用Python的matplotlib库来完成。以下是一个简单的示例代码:
```
import matplotlib.pyplot as plt
import numpy as np
# 创建一个0到9的横轴坐标数组
x = np.arange(0, 10)
# 计算y=x*x和y=5x+30的纵轴坐标数组
y1 = x * x
y2 = 5 * x + 30
# 绘制图像
plt.plot(x, y1, label="y = x*x")
plt.plot(x, y2, label="y = 5x + 30")
# 添加标题、网格和坐标轴标签
plt.title("Functions: y = x*x and y = 5x + 30")
plt.grid(True)
plt.xlabel("x")
plt.ylabel("y")
# 添加图例
plt.legend()
# 显示图像
plt.show()
```
运行以上代码,将会得到一个带有标题、网格、坐标轴标签和图例的图像,其中包含了函数y = x * x和y = 5x + 30的折线图。
### 回答3:
import numpy as np
import matplotlib.pyplot as plt
# 函数1:y = x*x
x = np.arange(0, 10, 1) # 横坐标范围:0到9,步长为1
y1 = x * x # 计算纵坐标值
# 函数2:y = 5x + 30
y2 = 5 * x + 30
# 绘制图像
plt.plot(x, y1, label='y = x*x')
plt.plot(x, y2, label='y = 5x + 30')
# 添加标题、网格、坐标轴标签和图例
plt.title('Function Graphs') # 标题
plt.grid(True) # 显示网格
plt.xlabel('x-axis') # 横轴标签
plt.ylabel('y-axis') # 纵轴标签
plt.legend() # 图例
# 展示图像
plt.show()
阅读全文