Python課程程式碼實現
1.Numpy
#-*- coding:utf-8 -*-
import numpy as np
a = np.array([2 , 0 , 1 , 5])
print( a )
print(a.min())
a.sort()#sort可以記錄儲存資料
print(a[:3])
print(a)
b = np.array([[1 ,2 ,3] , [4 , 5 , 6]])
print(b * b)
2.Scipy
#-*- coding:utf-8 -*-
from scipy.optimize import fsolve
def f(x):
x1 = x[0]
x2 = x[1]
return [2 * x1 - x2 ** 2 - 1 , x1 ** 2 - x2 - 2]
result = fsolve(f , [1 , 1])
print(result)
from scipy import integrate
def g(x):
return (1 - x ** 2) ** 0.5
pi_2 , err = integrate.quad(g , -1 , 1)//辛普森自適應函式,在[-1 , 1]之間求g(x)的定積分//
print(err)
3.Matplotlib
#-*- coding:utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0 , 10 , 1000)
y = np.sin(x) + 1
z = np.cos(x ** 2) + 1
plt.figure(figsize = (8 , 4))
plt.plot(x , y , label = '$\sin x+1$' , color = 'red' , linewidth = 2)
plt.plot(x , z , 'b--' , label = '$\cos x^2+1$' )
plt.xlabel('Time(s)')
plt.ylabel('Volt')
plt.title('A Simple Example')
plt.ylim(0 , 2.2)
plt.legend()
plt.show()
相關文章
- 密碼學課程設計 - 混合密碼的實現密碼學
- python實現自動搶課指令碼Python指令碼
- 40行Python程式碼實現“旅行者困境“演化過程Python
- 【python資料探勘課程】十.Pandas、Matplotlib、PCA繪圖實用程式碼補充PythonPCA繪圖
- 《Python語言程式設計》課程筆記Python程式設計筆記
- python 實現課堂練習Python
- 整理課程中將程式碼納入Git程式碼版本控制Git
- python課程筆記Python筆記
- 風變程式設計Python課程:讓改變從現在開始程式設計Python
- Python開發系列課程彙總 - 課程大綱Python
- Python程式碼實現雙色球原理Python
- 【課程學習】課程2:十行程式碼高效完成深度學習POC行程深度學習
- 課程實踐(二)
- 課程實踐(一)
- python是什麼課程Python
- COURSERA上的Python課程Python
- 如何學習python課程Python
- Python程式碼實現“FlappyBird”小遊戲PythonAPP遊戲
- 500行 python 程式碼實現模板引擎Python
- 100行程式碼實現React核心排程功能行程React
- Python協程greenlet實現原理Python
- Python-多程式-尹成-專題視訊課程Python
- 如何實現現代應用的落地-CSDN公開課-專題視訊課程
- 第12課:python 程式碼抒寫注意Python
- 資料庫課程設計—超市零售資訊管理系統(Python實現)資料庫Python
- 【python資料探勘課程】十四.Scipy呼叫curve_fit實現曲線擬合Python
- Python的容器有哪些?Python課程Python
- python——asyncio模組實現協程、非同步程式設計(三)Python非同步程式設計
- 課程實踐(二)續
- 課程實踐(一)續
- 為什麼現在Python那麼火?分享38集Python課程Python
- 一行 Python 程式碼實現並行Python並行
- 20 行 Python 程式碼實現加密通訊Python加密
- Python實現程式碼行數統計工具Python
- 主成分分析(PCA)Python程式碼實現PCAPython
- Python課程筆記 第3章 理解什麼是寫程式碼與Python的基本型別Python筆記型別
- Android圖片壓縮實現過程及程式碼Android
- python暑期課程 day1Python