f1 = lambda x : x**2 + 1 # anonymous function to be integrated xi = np.linspace(0,10,100) # interval of integration print(xi[0],f1(xi)[0]) # starting point ...
確定! 回上一頁