Simple Plot Example import numpy as np import matplotlib.pyplot as plt x = np.arange(0,100.5,0.5) # Generate x-axis values y = 2.0*np.sqrt(x) # Calculate y- ...
確定! 回上一頁