import matplotlib pyplot as plt plt.plot(AO,rous,'o-k') plt.xlabel(AO(m)') plt.ylabe('rous(
时间: 2024-06-15 08:06:30 浏览: 115
matplotlib.pyplot笔记
引用[1]:import matplotlib.pyplot as plt
AO = [1, 2, 3, 4, 5]
rous = [10, 20, 30, 40, 50]
plt.plot(AO, rous, 'o-k')
plt.xlabel('AO(m)')
plt.ylabel('rous')
plt.show()[^1]。
引用:import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('sin(x)')
plt.title('Plot of sin(x)')
plt.show()。
阅读全文