import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import quad
def fun(t, x):
return np.exp(-t) * (t ** (x - 1))
x = np.linspace(0, 10, 100)
y = [quad(fun, 0, np.inf, args=i)[0] for i in x]
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('$ y = \int_0^{\infty} e^{-t} \cdot t^{x-1} dt $')
plt.grid(True)
plt.show()
2-2
相關文章
- 2-2 Go語言的包(package)GoPackage
- 《機器學習實踐》程式清單2-2機器學習
- Data-Mediator入門系列2-2
- DOM Level 3 Events: DOM事件架構(2-2)事件架構
- 效能優化 - Oracle Tuning 總結 2-2優化Oracle
- 1-6 至2-2 節 JavaScript的內容JavaScript
- HenCoder UI 部分 2-2 全新定義 View 的尺寸UIView
- .NET Core CSharp 中級篇 2-2 List,ArrayList和DictionaryCSharp
- Developing COM Components using VC-ATL(2-2) (轉)dev
- 【Flink入門修煉】2-2 Flink State 狀態
- Python 基礎 2-2 列表的實際應用場景Python
- 資料結構上機測試2-2:單連結串列操作B資料結構
- 2-2 Scala專案構建工具sbt和IntelliJ IDEA環境配置IntelliJIdea
- 2-2 學生成績連結串列處理 (20分)——C語言實現C語言
- 演算法競賽入門經典(第二版)第二章 習題2-2 韓信點兵演算法
- 二進位制轉換成十進位制然後輸出 學堂線上第二章作業2-2
- 4面位元組跳動拿到2-2 Offer,入職就是30K16薪,全靠這份Android知識點PDF大全Android
- 面試位元組跳動定級2-2,拿32*16offer,P8大佬的演算法教程給了我春天!面試演算法