import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 25,0.1) fig, axis = plt.subplots(2) plt.ylabel('sin(x)') plt.xlabel('x') ...
確定! 回上一頁