import numpy as np
from matplotlib import pyplot as plt
x = np.arange(0, 100, 0.5)
y = 2 * x ** 3
plt.loglog(x, y)
plt.grid(True, which='both', ls='--')
plt.figure()
plt.plot(x, y)
plt.yscale('log')
plt.grid(True, which='both', ls='--')
plt.figure()
plt.plot(x,y)
plt.xscale('log')
plt.grid(True, which='both', ls='--')
plt.figure()
plt.plot(x,y)
plt.grid(True, which='both', ls='--')
plt.figure()
plt.plot(x, y)
plt.yscale('log')
plt.grid(True, which='major', ls='--')
plt.figure()
plt.plot(x, y)
plt.yscale('log')
plt.grid(True, which='minor', ls='--')
最终的结果为:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)