出现报错 x = np.linspace(1e8,1e2,1e18)
'float' object cannot be interpreted as an integer
更改强制转化类型代码x = np.linspace(int(1e8),int(1e2),int(1e18))