import numpy as np import matplotlib.pyplot as plt plt.rc('text', usetex=True) #使用latex x = np.linspace(-3,3,100) y = np.sin(x) plt.plot(x ...
確定! 回上一頁