import matplotlib.pyplot as plt import numpy as np x_min = 0 x_max = 10.0 x = np.arange(x_min, x_max, .01) y = np.exp(x) plt.plot(x,y) plt.xlim(x_min,x_max) ...
確定! 回上一頁